I've recently purchased an external Blu Ray Drive for my mac mini, ripped a bluray using makemkv and got all the titles. I was planning to use Avidemux to encode the main feature to x264 MP4, however Avidemux doesn't like the 23GB file so much (it keeps crashing). Anyone know a program I could use? Mybe even a better way of ripping the BRD?
Also, the ripped mkv title won't open in quicktime, plays without sound in MplayerX, but plays fine in the little finder preview (albeit a bit stuttery at times). I assume this is normal?
Things I'd like to avoid if possible:
-Crossover/WINE/Bootcamp/Parallels
-Handbrake (unless there's a way without loosing significant quality)
Blu Ray and the Mac
- gotenks794
- Joined: Mon Jul 30, 2007 4:39 pm
- Qyot27
- Surreptitious fluffy bunny
- Joined: Fri Aug 30, 2002 12:08 pm
- Status: Creepin' between the bullfrogs
- Location: St. Pete, FL
- Contact:
Re: Blu Ray and the Mac
If you aren't afraid of using the Terminal, just use x264 and/or ffmpeg directly. Of course, OSX tends to be rather neglected when it comes to other people supplying native builds of those tools, so if you want to make sure you have the latest versions then it helps to learn how to build them yourself (but this might not be feasible if you don't have access to a 10.6 install disc or don't want to grab Xcode from the App Store).
Basically, set up MacPorts according to the instructions on http://davidbaumgold.com/tutorials/wine-mac/ (yes, it's a Wine tutorial page, but you can stop before Part 3 if you don't want Wine), and then use MacPorts to either A) get the necessary tools to build x264 and ffmpeg yourself or B) use the x264 and ffmpeg-devel packages that MacPorts itself provides, since those are fairly recent. For option B), all that would be necessary is to use the following command:
And it'll install them for you. One caveat concerning x264 from MacPorts is that it most likely won't have FFMS2 input support or MP4 output. You have to build x264 yourself for those features, or rely on using libx264 through ffmpeg (which can also process the audio, if needed).
If A) seems to be the less confusing option, I can post the instructions I typically use for building x264 and ffmpeg, although it may need some tweaking because I usually don't build it for OSX. A couple of my other posts similar to this are here, and here. With said instructions, it would just be a matter of copying and pasting the commands into the Terminal.
I'm not sure of how 'correct' the output of MakeMKV is, so you might want to run the MKVs through mkvmerge just in case (I'd try the MacPorts method of installing it first, but there's also http://jonthn.free.fr/MKVtoolnix/). That should clear up any underlying container problems that might screw with you down the road. This may actually be the root of the issues you're facing with Quicktime and MPlayerX, although I don't know why Finder would be OK with it when Quicktime isn't.
If the GUI isn't available from either of those sources, then you'll have to use the Terminal again. A simple:
should work. Perian and MPlayerX should be up-to-date enough to handle MKV header compression.
Basically, set up MacPorts according to the instructions on http://davidbaumgold.com/tutorials/wine-mac/ (yes, it's a Wine tutorial page, but you can stop before Part 3 if you don't want Wine), and then use MacPorts to either A) get the necessary tools to build x264 and ffmpeg yourself or B) use the x264 and ffmpeg-devel packages that MacPorts itself provides, since those are fairly recent. For option B), all that would be necessary is to use the following command:
Code: Select all
sudo port install x264 ffmpeg-devel
If A) seems to be the less confusing option, I can post the instructions I typically use for building x264 and ffmpeg, although it may need some tweaking because I usually don't build it for OSX. A couple of my other posts similar to this are here, and here. With said instructions, it would just be a matter of copying and pasting the commands into the Terminal.
I'm not sure of how 'correct' the output of MakeMKV is, so you might want to run the MKVs through mkvmerge just in case (I'd try the MacPorts method of installing it first, but there's also http://jonthn.free.fr/MKVtoolnix/). That should clear up any underlying container problems that might screw with you down the road. This may actually be the root of the issues you're facing with Quicktime and MPlayerX, although I don't know why Finder would be OK with it when Quicktime isn't.
If the GUI isn't available from either of those sources, then you'll have to use the Terminal again. A simple:
Code: Select all
mkvmerge -o output.mkv input.mkv
My profile on MyAnimeList | Quasistatic Regret: yeah, yeah, I finally got a blog
- gotenks794
- Joined: Mon Jul 30, 2007 4:39 pm
Re: Blu Ray and the Mac
Well thank ya, I'ma try this out. I'll probably be back with questions lol