Profile fix for Toshiba Regza
I created my own device profile for my Toshiba Regza (RV75) based on various posts within the forums, and it has worked fine. I also noticed that the latest version (0.5.2) has a relevant device profile listed, but that it doesn't work correctly. To enable back/forward navigation in the TV Media Renderer the video needs to be in MPEG-PS format instead of MPEG-TS, and I've also added conversion from H.264 and incompatible audio transcodings. Hope it helps, and maybe the mods might make it into the next version.
Stan
Stan
- Code:
<Profile id="13" name="Toshiba Regza" extendsProfileId="1">
<Detection>
<UPnPSearch>
<FriendlyName>TOSHIBA REGZA</FriendlyName>
</UPnPSearch>
</Detection>
<Transcoding>
<!-- Transcode all video to MPEG-PS stream, with MPEG-2 video & AC3 audio -->
<Video targetContainer="mpeg" targetVCodec="mpeg2video" targetACodec="ac3">
<Matches container="asf" />
<Matches container="avi" />
<Matches container="mp4" />
<Matches container="matroska" />
<Matches container="flv" />
<Matches container="mpegts" />
<Matches container="mpeg" vCodec="h264" />
<!-- If audio not AC3, it must be transcoded -->
<Matches container="mpeg" aCodec="aac" />
<Matches container="mpeg" aCodec="mp3" />
<Matches container="mpeg" aCodec="dca" />
</Video>
<!-- Transcode all audio to Linear PCM -->
<Audio targetContainer="lpcm" aBitrate="192">
<Matches container="asf" />
<Matches container="mp4" />
<Matches container="mp3" />
<Matches container="flac" />
<Matches container="ogg" />
</Audio>
</Transcoding>
<AutomaticImageRotation>true</AutomaticImageRotation>
</Profile>