diff options
author | Marcin Chrzanowski <m@m-chrzan.xyz> | 2024-01-31 19:52:22 +0100 |
---|---|---|
committer | Marcin Chrzanowski <m@m-chrzan.xyz> | 2025-03-17 11:14:56 +0100 |
commit | 34dd60e937f59e851b1be07d963321bb018115af (patch) | |
tree | 040048aa7e0215d1f9c68cb13eab1ce2f80ffba7 | |
parent | 5e653188dcb8ce9a73e09f9a79c7b4bbf5713326 (diff) |
-rw-r--r-- | ffmpeg.md | 16 |
1 files changed, 15 insertions, 1 deletions
@@ -69,7 +69,21 @@ For the transpose parameter you can pass: ## Concatanate audio - ffmpet -i in1.mp3 -i in2.mp3 -i in3.mp3 -filter_complex '[0:0][1:0][2:0]concat=n=3:v=0:a=1' output.mp3 + ffmpeg -i in1.mp3 -i in2.mp3 -i in3.mp3 -filter_complex '[0:0][1:0][2:0]concat=n=3:v=0:a=1' output.mp3 + +## Concatanate videos + +Works well especially for large number. + +Create file `list.txt` + + file 'video1.mp4' + file 'video2.mp4' + ... + +Then + + ffmpeg -f concat -i list.txt -c copy combined.mp4 ## Fitlering |