Advertisement
Guest User

TopBottom dual input

a guest
Mar 24th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. @echo off
  2. echo video convert xh264
  3. echo **************************
  4. echo video codec : libxh264
  5. echo **************************
  6. echo.
  7. set /p input1= Input Left File :
  8. set /p input2= Input Right File :
  9. set /p output= Output TopBottom File :
  10.  
  11.  
  12. ffmpeg -i "%input1%" -vf "[in] pad=iw:2*ih [left]; movie="%input2%" [right];[left][right] overlay=0:main_h/2 [out]" "%output%"
  13. pause
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement