Skip to content

Instantly share code, notes, and snippets.

@pemre
Created November 27, 2022 19:12
Show Gist options
  • Save pemre/7f2f43a8ee65cf7e295bf3d7451a38b8 to your computer and use it in GitHub Desktop.
Save pemre/7f2f43a8ee65cf7e295bf3d7451a38b8 to your computer and use it in GitHub Desktop.

How to convert mkv from VOB or ISO files

From ISO

ffmpeg -fflags +genpts -i *.iso -acodec copy -vcodec copy out.mkv

From VOB

cat *.VOB > output.vob                                                 // merge
ffmpeg -i output.vob                                                   // check inside
ffmpeg -fflags +genpts -i output.vob -acodec copy -vcodec copy out.mkv // convert

source: https://www.internalpointers.com/post/convert-vob-files-mkv-ffmpeg

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