What's the best way to merge clips? #89
-
What would be the best way to merge clips manually until feature 75 is implemented? Should I use certain These examples look plausible but I'm not sure which to choose. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Using
|
Beta Was this translation helpful? Give feedback.
Using
concat
filter is the way to go, it is lossless and it's the way we do it on the app:Create File List
echo file video1.mp4 > mylist.txt
echo file video2.mp4 >> mylist.txt
echo file video3.mp4 >> mylist.txt
Run the ffmpeg command
ffmpeg -f concat -i mylist.txt -c copy DateProperlyParsed.mp4