I'm trying to build a media player based on chromium.
I've changed the ffmpeg and some files in the media folder to make this possible:
<video>
<source src="video.mkv"type="video/x-matroska">
</video>
My test video has one DTS audio stream.
Playing this video in e.g. VLC passes through the encoded audio to my sound system which correctly shows dts as source and decodes it.
Playing this video in my modified chromium version I only receive a decoded stereo stream... so somewhere in chrome the dts audio stream has to be downmixed / resampled.
It would be awesome to be able to control this behavior.
After some googling I found the chrome flag "--disable-audio-output-resampler" ... but this does nothing to chromium (and I found ne reference of this in the source code either).
Hopefully it's a little bit clearer right now...
and it has nothing to do with web realtime communication.