Code: Select all
makemkvcon mkv iso:/path/to/movie.iso all .
Code: Select all
makemkvcon mkv iso:/path/to/movie.iso 0 .
Thanks!
Code: Select all
makemkvcon mkv iso:/path/to/movie.iso all .
Code: Select all
makemkvcon mkv iso:/path/to/movie.iso 0 .
Code: Select all
[mw007@localhost movies]$ ls -lh mult*
-rw-r--r-- 1 mw007 users 4.0G Aug 16 19:27 multiplicity.iso
-rw-r--r-- 1 mw007 users 3.6G Sep 23 10:19 multiplicity.mkv
MakeMKV generally builds lossless MKVs, i.e. preserving the original quality. To significantly reduce the filesize, you need to transcode at least one of the streams, especially the video stream. You might want to try ffmpeg (or libav), something like this:mw007 wrote:Going from ISO to MKV only brought the filesize down by about 400 MB. Ideally, I'd like to get each movie to 1 GB or less.
I haven't done a visual check just yet, but this definitely brought the file size down. I did have to search around for the libx264-slow.ffpreset file. It was deprecated back in April 2011: videolan.org commit.MakeMKV generally builds lossless MKVs, i.e. preserving the original quality. To significantly reduce the filesize, you need to transcode at least one of the streams, especially the video stream. You might want to try ffmpeg (or libav), something like this:
ffmpeg -i input.mkv -acodec copy -scodec copy -vcodec libx264 -crf 18 -vpre libx264-slow output.mkv
I'm running this on a server that has no gui. It's a mythtv server, with multiple clients around the house.No need to fiddle with command-lines when you can use Handbrake & Co. Also, VobSubs on DVDs are usually < 10 MB so it wouldn't make much of a difference keeping them.
Sorry about that. It's hard to keep up with ffmpeg development. The constantly changing options are always changing constantly.mw007 wrote:I did have to search around for the libx264-slow.ffpreset file. It was deprecated back in April 2011: videolan.org commit.