View Full Version : Which tool do you use for extracting DTS audio from Blu-rays?
orion44
6th September 2024, 17:23
I'm using tsMuxer. Why does it take so long to demux a DTS audio from an M2TS stream? It's going to take like an hour and a half, maybe more.
Is this normal?
Is there another tool for this that you would recommend? Which one do you use?
tebasuna51
6th September 2024, 18:19
Try with eac3to, but I don't know if it is fast.
Lowpro
6th September 2024, 19:55
An example using FFMPEG...
The file, "00004.m2ts" contains 3 audio tracks. I want to extract the DTS-HD MA 5.1 track. To do so I first run the below from the command line to determine the mappings.
ffmpeg -i 00004.m2ts
The above provides the below results.
Stream #0:0: Video: h264 <High>, yuv420p, 1920x1080, 23.98 fps
Stream #0:1: Audio: dts <DTS-HD MA>, 5.1
Stream #0:2: Audio: dts <DTS-HD MA>, stereo
Stream #0:3: Audio: dts <AC-3>, stereo
Stream #0:4: Subtitle: hdmv_pgs_subtitle
I then run the below command to extract the DTS-HD MA 5.1 track.
ffmpeg -i 00004.m2ts -map 0:1 -c copy 00004_5.1.dts
The M2TS file in this case was 30.9 GB. It took 3 minutes to extract the audio, the file "00004_5.1.dts" weighing in at 1.60 GB. Your results may vary. My laptop is over 15 years old so for most it would take far less time I'd imagine.
Should mention as well, when running the command to extract the audio track I received the below message.
[NULL @ 006z7c40] start time is not set in estimate_timings_from_pts
I'm not sure what the above means exactly. That being said, the audio track still extracted successfully. I then muxed the audio track back into the M2TS file replacing the original DTS-HD MA 5.1 track using tsMuxer, the output option set to Blu-ray folder. When playing the Blu-ray via PowerDVD the audio track was in sync from start to finish. No issues during playback.
Frank62
6th September 2024, 21:43
I often use tsmuxer for demuxing dts. But even when I downconvert it takes just a few minutes. Must be an I/O problem.
SeeMoreDigital
7th September 2024, 12:33
I often use tsmuxer for demuxing dts. But even when I downconvert it takes just a few minutes. Must be an I/O problem.
Same here ;)
hubblec4
10th September 2024, 14:02
DGDemux is the best demuxer.
https://www.rationalqm.us/board/viewforum.php?f=16
orion44
12th September 2024, 15:38
DGDemux is the best demuxer.
https://www.rationalqm.us/board/viewforum.php?f=16
Just tried it. It demuxed DTS audio from an M2TS stream in less than 2 minutes. Amazing tool.
But before that, I deleted lots of both huge and small files from my SSD that were there for more than a year,
so it may have had something to do with that.
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.