9
6
I’m new to FFmpeg (Windows), and need some help.
I want to convert my MKVs to MP4 with as little loss in quality as possible. The MKVs are made with MakeMKV and contain among others DTS soundtrack. They are lossless. The reason I want to convert, is that I plan to stream it to iPads and Apple TV. iPads don’t support DTS and MKVs. The MKVs are both DVDs and Blu-Ray. The MKVs contain video, soundtracks and subtitles.
I have tried this, but get no sound due to DTS soundtrack:
ffmpeg -i input.mkv -c:v copy -c:a copy output.mp4
Can anybody help me?
What codecs should I use? MP4 is the best for Apple?
1Are there specific iPad and Apple TV versions you are targeting, or do you want to support all of them? – llogan – 2014-05-24T00:42:46.063
2Note: MP4 is not a codec. It's just a file format (a "container"). – slhck – 2014-05-24T06:43:36.360
I have the newest iPod Air. I have the newest Apple TV. I know MP4 is a container and not a codec :) – Striky – 2014-05-24T08:14:34.733
Please include some information about one of your typical inputs. The complete console output of
ffmpeg -i input.mkvwill suffice. – llogan – 2014-05-24T23:11:17.060I have tried ffmpeg -i input.mkv -c:v copy -c:a copy output.mp4 This did play but got no sound since apple does not play DTS. Have also tried ffmpeg -i input.mkv -strict experimental -c:v copy -c:a aac -b:a 192k -q:a 6 output.mp4 but the film (both video and sound) was not playing smooth on my iPad Air (both stream and downloaded). – Striky – 2014-05-25T07:44:29.900
I'll be able to provide a more detailed answer if you show some information about your input and your ffmpeg build. – llogan – 2014-05-25T17:08:23.293