Transcoding only Audio DTS to ac3.
i want to transcode all movie with DTS AudioCodec to ac3. The video-Codec should not be touched, cause my TV can play every Video-Format and the CPU-Powerusage would be too high.
I already wrote a profile, but i think it's not doing what it should do.
Here my work till now:
- Code:
<Profile id="150" name="Grundig " extendsProfile="1">
<Detection>
<HttpHeaders>
<X-AV-Client-Info>.*Grundig*.</X-AV-Client-Info>
</HttpHeaders>
<UPnPSearch>
<ModelName> Grundig </ModelName>
</UPnPSearch>
</Detection>
<Transcoding>
<Video targetContainer="mpegts" targetACodec="ac3">
<Mathces container="matroska" />
</Video>
</Transcoding>
</Profile>
The audio transcoding works, but i think it does also video transcoding, what i don't want it to do.
Thanks for any help.