Skip to content

What's the best way to merge clips? #89

Answered by KyleKun
alexanderadam asked this question in Q&A
Discussion options

You must be logged in to vote

Using concat filter is the way to go, it is lossless and it's the way we do it on the app:

  1. Create File List
    echo file video1.mp4 > mylist.txt
    echo file video2.mp4 >> mylist.txt
    echo file video3.mp4 >> mylist.txt

  2. Run the ffmpeg command
    ffmpeg -f concat -i mylist.txt -c copy DateProperlyParsed.mp4

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by alexanderadam
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants