Thu Aug 02, 2012 9:33 am by marcjero
Hello,
thanks for upgrading A-Series profile in 1.0.
I changed few more things.
-added audio transcoding to mp3 for mkv because the original ac3 is sluttering in some movies. This way I always force audio transcoding.
-changed mime type for AVI (video/divx didn' work)
-removed transcoding for mp4 because the TV supports mp4 playback pretty well (commented out)
-added detection pattern using http header (I guess this one matches A-Series only)
-UPDATE : added transcoding for flv and mp4 files (online video support)
Samygo firmware upgrade is recommended as it fixes all aspect ratio issues for A-Series.
Profile :
- Code:
<Profile id="5" name="Samsung TV (A-series)" extendsProfileId="2">
<Detection>
<HttpHeaders>
<User-Agent>.*SamsungWiselinkPro/1.0.*</User-Agent>
</HttpHeaders>
</Detection>
<MediaFormatProfiles>
<!--MediaFormatProfile mime-type="video/divx">AVI</MediaFormatProfile-->
<MediaFormatProfile mime-type="video/mpeg">AVI</MediaFormatProfile>
</MediaFormatProfiles>
<Transcoding>
<!-- For dvr-ms files force mpeg2video transcoding to fix monotone timestamps problems-->
<Video targetContainer="mpegts" targetACodec="ac3" forceVTranscoding="true">
<Matches container="asf" vCodec="mpeg2video" />
<Matches container="asf" vCodec="mpeg1video" />
</Video>
<Video targetContainer="mpegts" targetACodec="mp3" aBitrate="320">
<Matches container="matroska" vCodec="h264" />
</Video>
<Video targetContainer="mpegts" targetACodec="ac3" aBitrate="384" targetVCodec="mpeg2video">
<Matches container="matroska" />
<!--Matches container="mp4" /-->
<Matches container="asf" />
<Matches container="avi" vCodec="mjpeg" />
<Matches container="avi" vCodec="dvvideo" />
<Matches container="ogg" />
<Matches container="3gp" />
</Video>
<Video targetContainer="mpegts">
<Matches container="wtv" />
</Video>
<Audio targetContainer="lpcm">
<Matches container="asf" />
<Matches container="mp4" />
<Matches container="flac" />
<Matches container="ogg" />
<Matches container="adts" />
</Audio>
</Transcoding>
<OnlineTranscoding>
<Video targetContainer="mpegts" targetACodec="mp3" aBitrate="320">
<Matches container="mp4" vCodec="h264"/>
</Video>
<Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="mp3" aBitrate="320">
<Matches container="flv" />
</Video>
</OnlineTranscoding>
</Profile>