Samsung TV C-series corrected profile

hi everyone,
i just wanted to post this one for you, since it took me some time to figure it out. My Samsung UE40C5700 is not able to play MP4 containers with h264 video. I usually get the "Unsupported File Format" error, or some such.
I'm not sure, if this holds true for the rest of the C-series. Anyway, here's the fix for the profile in the Samsung TV / player (C/D/E-series) section:
The added line is the last one. If you have multiple C/D/E-series TVs or players, you should probably copy/paste a complete profile section just for the C-series.
This did not fix all of my problems with .mp4 containers, but most. I have not yet figured out, why some h264/aac mp4's work, and some don't. Maybe the server did not yet refresh all of my library. It's grown quite large in the last decade or so.
Anyway, if all else fails, you can always temporarily switch to the "DirecTV HD-DVR" profile. It's a bit overkill, but that worked for all my files.
00h
i just wanted to post this one for you, since it took me some time to figure it out. My Samsung UE40C5700 is not able to play MP4 containers with h264 video. I usually get the "Unsupported File Format" error, or some such.
I'm not sure, if this holds true for the rest of the C-series. Anyway, here's the fix for the profile in the Samsung TV / player (C/D/E-series) section:
- Code:
<Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3" aBitrate="192" maxVBitrate="20000">
<Matches container="*" vCodec="h264" profile="high_10" />
<Matches container="*" vCodec="h264" profile="high" levelGreaterThan="4.2" />
<Matches container="*" vCodec="h264" profile="main" levelGreaterThan="4.2" />
<Matches container="mp4" vCodec="mpeg4" aCodec="lpcm" />
<Matches container="mp4" vCodec="h264" aCodec="lpcm" />
</Video>
The added line is the last one. If you have multiple C/D/E-series TVs or players, you should probably copy/paste a complete profile section just for the C-series.
This did not fix all of my problems with .mp4 containers, but most. I have not yet figured out, why some h264/aac mp4's work, and some don't. Maybe the server did not yet refresh all of my library. It's grown quite large in the last decade or so.

00h