Skip to content

Instantly share code, notes, and snippets.

@PeaJa
Last active February 23, 2024 07:53
Show Gist options
  • Save PeaJa/33ff5a3d3dd54da5137e to your computer and use it in GitHub Desktop.
Save PeaJa/33ff5a3d3dd54da5137e to your computer and use it in GitHub Desktop.
Convert VOB to MP4
@echo off
cls
for %%i in (*.vob) do ffmpeg -i %%i -vcodec h264 -s 720x576 -vf yadif -sn -map 0:m:language:rus "%%~ni.mpg"
ffmpeg -i concat:"VTS_01_1.mpg|VTS_01_2.mpg|VTS_01_3.mpg|VTS_01_4.mpg|VTS_01_5.mpg|VTS_01_6.mpg|VTS_01_7.mpg|VTS_01_8.mpg" -c copy output.mpg
ffmpeg -i output.mpg -qscale:v 0 film.mp4
mkdir result_dir
move *.mp4 result_dir
erase *.mpg
echo press any key
@PeaJa
Copy link
Author

PeaJa commented Oct 5, 2014

Convert VOB to MP4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment