Advertisement
Guest User

Untitled

a guest
Feb 6th, 2016
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. ffmpeg -i video0 -i video1 -i video2 -i music -filter_complex
  2. "[0:v]fps=25,scale=1280x720,setpts=PTS-STARTPTS[v0];
  3. "[1:v]fps=25,scale=1280x720,setpts=PTS-STARTPTS[v1];
  4. "[1:v]fps=25,scale=1280x720,setpts=PTS-STARTPTS[v2];
  5. "[v0][v1][v2]concat=n=3:v=1:a=0,format=yuv420p[v]"
  6. -map "[v]" -map 3:a -shortest output
  7.  
  8. file "/path/to/video0"
  9. file "/path/to/video1"
  10. file "/path/to/video2"
  11.  
  12. ffmpeg -f concat -i input.txt -i music -shortest output
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement