Transcoding DirecTV HD-DVR Audio
This means that the Serviio DirecTV HD-DVR transcoding profile is working for Video. However, it is not working for Audio. When I try to play iTunes audio files (.m4a) residing on the same drive as the videos, MediaShare will not play them because it will only play .mp3 audio files.
My question is: Is there a way to get Serviio to transcode audio files to mp3 format? Below is the DirecTV HD-DVR profile I modified hoping it would do this, but it doesn't:
- Code:
<Profile id="6" name="DirecTV HD-DVR" extendsProfileId="1">
<Detection>
<HttpHeaders>
<User-Agent>.*DIRECTV.*</User-Agent>
</HttpHeaders>
<UPnPSearch>
<FriendlyName>^DIRECTV.*$</FriendlyName>
</UPnPSearch>
</Detection>
<Transcoding>
<Video targetContainer="mpeg" targetVCodec="mpeg2video" targetACodec="mp2" maxVBitrate="8192" forceStereo="true" DAR="16:9">
<Matches container="matroska" />
<Matches container="mp4" />
<Matches container="asf" />
<Matches container="avi" />
<Matches container="ogg" />
<Matches container="flv" />
<Matches container="3gp" />
<Matches container="rm" />
</Video>
<Audio targetContainer="mp3">
<Matches container="flac" />
<Matches container="ogg" />
<Matches container="adts" />
<Matches container="mp4" /> <!-- iTunes store m4a files need to be transcoded to play -->
<Matches container="m4a" /> <!-- iTunes store m4a files need to be transcoded to play -->
</Audio>
</Transcoding>
<OnlineTranscoding>
<Video targetContainer="mpeg" targetVCodec="mpeg2video" targetACodec="mp2" maxVBitrate="8192" forceStereo="true" DAR="16:9">
<Matches container="*" />
</Video>
</OnlineTranscoding>
<HardSubsTranscoding>
<Video targetContainer="mpeg" targetVCodec="mpeg2video" targetACodec="mp2" maxVBitrate="8192" forceStereo="true" DAR="16:9" />
</HardSubsTranscoding>
</Profile>
MediaShare still shows "X" next to any m4a file (meaning it sees it, but will not play it).
Any suggestions? Thanks!
-ron