Advertisement
AisIceEyes

ffmpeg join / merge on top of each other

Oct 16th, 2013
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ffmpeg -i 2_Out_of_Control.VOB -aspect 16:9 \
  2. -vf "yadif=0:-1:0,crop=w=714:h=476:x=6:y=0,scale=1280:720,boxblur=lp=13" \
  3. -c:v libx264 -preset medium \
  4. -c:a copy \
  5. '2(blurred)Out_of_Control.mp4'
  6.  
  7. ffmpeg -i 2_Out_of_Control.VOB \
  8. -vf "yadif=0:-1:0,crop=w=714:h=476:x=6:y=0,scale=1080:720" \
  9. -c:v libx264 -preset medium \
  10. -c:a copy \
  11. '2(clear)Out_of_Control.mp4'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement