juubacca

ffmpeg MKV to MPEG4 convert

Oct 29th, 2018
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.44 KB | None | 0 0
  1. @ECHO OFF
  2. IF EXIST "%1" (
  3.     ffmpeg -i %1 -c:a copy -c:v copy %2
  4.     GOTO END
  5. ) ELSE (
  6.     ECHO\
  7.     ECHO Using https://www.ffmpeg.org/ to conver MKV to MPEG4
  8.     ECHO   Usage: mkv2mpg "input file.mkv" output.mp4
  9.     ECHO\
  10.     ECHO Surround filenames with doublequotes if they contain SPACE or similar
  11.     GOTO END
  12. )
  13.  
  14. :END
  15. REM Got this from Reddit https://www.reddit.com/r/VideoEditing/comments/2ws58z/best_way_to_get_mkv_files_into_sony_vegas_pro_13/ctxzm7f
Add Comment
Please, Sign In to add comment