Advertisement
Guest User

FFmpeg word concat

a guest
Jun 19th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. Not working:
  2. ffmpeg -f concat -safe 0 -i <(printf "file '/Users/peter/Desktop/WordHeadingsWo.mp4'\nfile '/Users/peter/Desktop/WordClipsWo.mp4'\n") -c copy "WordsWoFailed.mp4"
  3.  
  4. Working, but slow:
  5. ffmpeg -i "WordHeadingsWo.mp4" -i "WordClipsWo.mp4" -v debug -strict -2 -filter_complex "[0:v] [0:a:0] [1:v] [1:a:0] concat=n=2:v=1:a=1 [v] [a]" -map "[v]" -map "[a]" "WordsWo.mp4"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement