Re: Panasonic Viera and Serviio
This profile also resolved another issue I was having with mpg files stuttering. The stuttering is evident with all other profiles delivered (Yes I tried them all). I still have one issue left to resolve. I can stream & watch mpg files which are created by my PVR as long as they are from the digital channels. If the mpg is a recording from one of the High Defenition (HD) channels, it is listed on the TV, but no thumb nail is shown and when I try to play it, I get a message File Cannot Be Read. All my mpg files display on the Panasonic listing as MPEG2-TS. (I do note that the play length for the HD files are listing incorrectly)
If anyone has any ideas or even the steps I should take to logically work through trouble shooting this, it would be greatly appreciated.
As I said, I stumbled across getting other issues resolved so far, as I don't understand transcoding, containers etc.
- Code:
<Profile id="11" name="Panasonic TV" extendsProfileId="1">
<Detection>
<X-AV-Client-Info>.*VIERA.*</X-AV-Client-Info>
</Detection>
<MediaFormatProfiles>
<!-- rename native mpeg2ts with h264/ac3 ac3 formats to those supported by the tv -->
<MediaFormatProfile mime-type="video/vnd.dlna.mpeg-tts" name="AVC_TS_HD_50_AC3">AVC_TS_MP_HD_AC3</MediaFormatProfile>
<MediaFormatProfile mime-type="video/vnd.dlna.mpeg-tts" name="AVC_TS_HD_50_AC3">AVC_TS_MP_SD_AC3</MediaFormatProfile>
<MediaFormatProfile mime-type="video/vnd.dlna.mpeg-tts" name="AVC_TS_HD_50_AC3_T">AVC_TS_MP_HD_AC3_T</MediaFormatProfile>
<MediaFormatProfile mime-type="video/vnd.dlna.mpeg-tts" name="AVC_TS_HD_50_AC3_T">AVC_TS_MP_SD_AC3_T</MediaFormatProfile>
<!-- rename transcoded mpeg2ts with h264 to one of the TV's supported profiles -->
<MediaFormatProfile mime-type="video/mpeg" name="AVC_TS_HD_50_AC3_ISO">AVC_TS_MP_HD_AC3_ISO</MediaFormatProfile>
<MediaFormatProfile mime-type="video/mpeg" name="AVC_TS_HD_50_AC3_ISO">AVC_TS_MP_SD_AC3_ISO</MediaFormatProfile>
</MediaFormatProfiles>
<Transcoding>
<!-- First remux all h264 video on MPEG-TS stream with ac3 audio transcoding, expected profile AVC_TS_MP_HD_AC3_ISO or AVC_TS_MP_SD_AC3_ISO -->
<Video targetContainer="mpegts" targetACodec="ac3">
<Matches container="avi" vCodec="h264" />
<Matches container="mp4" vCodec="h264" />
<Matches container="matroska" vCodec="h264" />
<!-- if audio different to ac3, must be transcoded -->
<Matches container="mpegts" aCodec="aac" />
<Matches container="mpegts" aCodec="mp3" />
<Matches container="mpegts" aCodec="dca" />
</Video>
<!-- All Others video/audio codec will be transcoded into mpeg2ts, mpeg2video and ac3 audio (MPEG_TS_SD_EU). -->
<Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3">
<Matches container="asf" />
<Matches container="avi" />
<Matches container="mp4" />
<Matches container="matroska" />
</Video>
</Transcoding>
</Profile>