Answers for "ffmpeg combine two files"

2

ffmpeg add two videos together

$ cat mylist.txt
file '/path/to/file1'
file '/path/to/file2'
file '/path/to/file3'
    
$ ffmpeg -f concat -safe 0 -i mylist.txt -c copy output.mp4
Posted by: Guest on November-25-2020
0

ffmpeg multiple input files

# this is a comment
file '/path/to/file1.wav'
file '/path/to/file2.wav'
file '/path/to/file3.wav'
Posted by: Guest on August-11-2020

Code answers related to "ffmpeg combine two files"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language