Re: Problems with MKV / H.264 on Sony BDP-S370 Bluray-Player
Without that, the video section will disappear again.
I was doing some research and I think I may have found the problem. Correct me if I am wrong about the specification, though. What I am reading is that the DLNA media server MUST respond with support for one of the following profiles:
- US: MPEG_TS_SD_NA, MPEG_TS_SD_NA_T, MPEG_TS_SD_NA_ISO, MPEG_PS_NTSC
 
Japan: MPEG_TS_JP_T, MPEG_PS_NTSC
Europe: MPEG_TS_SD_EU, MPEG_TS_SD_EU_T, MPEG_TS_SD_EU_ISO, MPEG_PS_PAL
Korea: MPEG_TS_SD_KO, MPEG_TS_SD_KO_T, MPEG_TS_SD_KO_ISO, MPEG_PS_NTSC
I see that the generic profile that we build upon does indeed include "MPEG_PS_PAL", but I think my player gets upset, because obviously I am in the US and the specification says that I should have MPEG_PS_NTSC support?
I'm still working on getting MKV working, but I think this probably explains why the people posting here from the US is having problems with the video section not appearing.
Edit:
Another issue with it thinking I should be using europe profiles, so I think since I have a US player it gets ignored. Since the DLNA spec has requirements for each region, I assume that there must be a way for the player and the server to determine the region? Is this not being communicated properly between the player and server?
This us using the following profile:
- Code:
 <Profile id="9" name="Sony BDP-S370" extendsProfileId="1">
<Detection>
<X-AV-Client-Info>.*Blu-ray Disc Player.*</X-AV-Client-Info>
</Detection>
<MediaFormatProfiles>
<MediaFormatProfile mime-type="video/divx">MATROSKA</MediaFormatProfile>
</MediaFormatProfiles>
<AutomaticImageRotation>true</AutomaticImageRotation>
<Transcoding>
<Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3">
<Matches container="matroska" vCodec="h264" />
<Matches container="mpegts" vCodec="h264" />
<Matches container="avi" vCodec="h264" />
</Video>
</Transcoding>
</Profile>
Thanks again!
