Wed Feb 15, 2012 7:09 am by Larzendk
Hi Zip
If i understand this right i have to do this to get subs on MKV files:
- If subtitle support is vital to you, you have a European or Canadian player, and you understand the native Matroska playback problems described above, then you can remove all matroska matches from the transcoding section of the Sony BDP device profile like so:
Code:
<Transcoding>
<Video targetContainer="mpegts">
<Matches container="mp4" vCodec="h264" />
</Video>
<!-- unsupported codecs will be transcoded into mpeg-ts, mpeg2 video and ac3 audio -->
<Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3">
<Matches container="asf" />
<Matches container="flv" />
<!-- digital camera video formats -->
<Matches container="avi" vCodec="mjpeg" />
<Matches container="mp4" vCodec="mjpeg" />
</Video>
<Audio targetContainer="lpcm">
<Matches container="mp4" />
<Matches container="flac" />
<Matches container="ogg" />
</Audio>
</Transcoding>