If I create a decrypted backup of the disc and open the main .m2ts with mediainfo v21.09 and ffprobe v4.4, this is what they say about the track (note "7 channels" and "6.1"):
Code: Select all
$ mediainfo backup/THE_PHANTOM_MENACE/BDMV/STREAM/00800.m2ts
...
Audio #1
ID : 4352 (0x1100)
Menu ID : 1 (0x1)
Format : DTS ES XXCH
Format/Info : Digital Theater Systems
Commercial name : DTS-ES Discrete
Codec ID : 130
Duration : 2 h 14 min
Bit rate mode : Constant
Bit rate : 768 kb/s
Channel(s) : 7 channels
Channel layout : C L R Ls Rs Cb LFE
Sampling rate : 48.0 kHz
Frame rate : 93.750 FPS (512 SPF)
Bit depth : 24 bits
Compression mode : Lossy
Stream size : 737 MiB (2%)
...
Code: Select all
$ ffprobe backup/THE_PHANTOM_MENACE/BDMV/STREAM/00800.m2ts
...
Stream #0:1[0x1100]: Audio: dts (DTS-ES) ([130][0][0][0] / 0x0082), 48000 Hz, 6.1, fltp, 768 kb/s
...
However, in MakeMKV v1.16.5 (and older versions) the main title's first audio track only shows as a single DTS 5.1 track:
And after letting MakeMKV mux the MKV from the backup files, mediainfo also only reports "6 channels":
Code: Select all
$ mediainfo Die\ dunkle\ Bedrohung_t02.mkv
...
Audio #1
ID : 2
ID in the original source medium : 4352 (0x1100)
Format : DTS ES XXCH
Format/Info : Digital Theater Systems
Commercial name : DTS-ES Discrete
Codec ID : A_DTS
Duration : 2 h 16 min
Bit rate mode : Constant
Bit rate : 768 kb/s
Channel(s) : 6 channels
Channel(s)_Original : 7 channels
ChannelLayout_Original : C L R Ls Rs Cs LFE
Sampling rate : 48.0 kHz
Frame rate : 93.750 FPS (512 SPF)
Bit depth : 24 bits
Compression mode : Lossy
Stream size : 748 MiB (2%)
Title : Surround 5.1
Language : English
Default : Yes
Forced : No
Original source medium : Blu-ray
...
Code: Select all
$ ffprobe Die\ dunkle\ Bedrohung_t02.mkv
...
Stream #0:1(eng): Audio: dts (DTS-ES), 48000 Hz, 6.1, fltp, 768 kb/s (default)
Metadata:
title : Surround 5.1
BPS-eng : 768000
DURATION-eng : 02:16:10.922666666
NUMBER_OF_FRAMES-eng: 766024
NUMBER_OF_BYTES-eng: 784408576
SOURCE_ID-eng : 001100
...
What is going on here?
Is MakeMKV only showing and muxing the 5.1 core of the DTS ES XXCH 6.1 track and ffmpeg/ffprobe is just wrongly detecting "6.1" in the MKV?
Curiously, MKVToolNix v53.0.0 also can't decide how many channels it got.
mkvmerge says "7 channels" for both the MKV and M2TS, while mkvinfo and mkvpropedit say "6 channels".
I just want to correctly label the metadata and know what channel layout to choose when I'm encoding with ffmpeg as AAC.
Thanks.