This shows you the differences between two versions of the page.
util:multimedia:ffmpeg [2015/04/21 02:27] 127.0.0.1 external edit |
util:multimedia:ffmpeg [2020/11/18 14:38] (current) phil Added info about concat |
||
---|---|---|---|
Line 51: | Line 51: | ||
* scale to yres of 480, keeping aspect ratio (-1) | * scale to yres of 480, keeping aspect ratio (-1) | ||
* drop audio input (-an) | * drop audio input (-an) | ||
+ | |||
+ | ===== Concatenating Videos ===== | ||
+ | |||
+ | A quick and easy way to concat videos without re-encoding is to use the | ||
+ | '' | ||
+ | |||
+ | $ cat mylist.txt | ||
+ | file '/ | ||
+ | file '/ | ||
+ | file '/ | ||
+ | | ||
+ | $ ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4 | ||
+ | |||
+ | ===== Links ===== | ||
+ | |||
+ | [[https:// | ||