1
0
mirror of https://github.com/tiyn/wiki.git synced 2026-04-16 01:04:47 +02:00

refactor: using ```sh instead of shell

This commit is contained in:
2022-09-21 04:38:39 +02:00
parent 888f28b2d3
commit b0c886d962
54 changed files with 71 additions and 73 deletions

View File

@@ -8,7 +8,7 @@ many audio and video tools and libraries.
First you need to create a text file `files.txt` that includes a line for every
video you want to concatenate in the form of:
```shell
```sh
file '<path to the video>'
```
@@ -16,7 +16,7 @@ You have to give the absolute path towards the files.
Make sure the videos are in correct order.
To concatenate these video files you can run:
```shell
```sh
ffmpeg -f concat -safe 0 -i files.txt -map 0 -c copy output.mp4
```