What are the optimum settings for Handbrake to watch videos on the iPad 3?
I have blu ray MKV rips I want to convert to try
Thanks!
Do a search on the forum...there are several threads one this.
What are the optimum settings for Handbrake to watch videos on the iPad 3?
I have blu ray MKV rips I want to convert to try
Thanks!
If you have MKV rips, they're more than likely H.264 video already, in which case, using Handbrake would be a complete waste of time.
Use Ffmpeg (command line preferably) and pass through video, change audio to two channel (unless the iPad can all of a sudden play ac3 5.1), remove metadata/chapters if any, and save as m4v. Good to go.
Most of my conversions (5-6 GB files) take 1-2 minutes each.
ffmpeg -i filename.mkv -vcodec copy -acodec libfaac -ac 2 -ab 160k -map_meta_data -1:0 -map_chapters -1:0 filename.mp4
what would be the command line for that? and what's wrong with getting gui for this?
You'd be looking at something like this.
Code:ffmpeg -i filename.mkv -vcodec copy -acodec libfaac -ac 2 -ab 160k -map_meta_data -1:0 -map_chapters -1:0 filename.mp4
As far as GUI vs command line, I never had much luck with the GUI ffmpeg. I got errors all the time and couldn't figure out why. Everything I've ever wanted to do with video files, I can easily do with command line ffmpeg.
How did you install ffmpeg?