50PFL3807 Transcoding

Posted:
Fri Dec 21, 2012 4:06 pm
by martialartsguy
Hi there,
Trying to get transcoding working for my Philips through Serviio. It will only play .mpeg files, and I have a mix of .avi, .mkv, etc. I'd like to be able to not only play, but pause, FF & REW files.
The Philips is DLNA ready, but I can't get the default profile to transcode anything.
Re: 50PFL3807 Transcoding

Posted:
Fri Dec 21, 2012 5:39 pm
by martialartsguy
With my current code, I can play, FF & Rewind any of my files, but cannot pause the video:
- Code:
<Profile id="20" name="Philips" extendsProfileId="1">
<Detection>
<UPnPSearch>
<FriendlyName>.*PHILIPS.*</FriendlyName>
</UPnPSearch>
</Detection>
<SubtitlesMimeType>text/srt</SubtitlesMimeType>
<MediaFormatProfiles>
<MediaFormatProfile mime-type="video/avi" name="">AVI</MediaFormatProfile>
</MediaFormatProfiles>
<Transcoding>
<Video targetContainer="mpegts" targetACodec="ac3" targetVCodec="mpeg2video" maxVBitrate="12000">
<Matches container="matroska" />
<Matches container="mp4" />
<Matches container="avi" />
<Matches container="asf" />
<Matches container="ogg" />
<Matches container="flv" />
<!-- if audio different to ac3, must be transcoded -->
<Matches container="mpeg" aCodec="aac" />
<Matches container="mpeg" aCodec="mp3" />
<Matches container="mpeg" aCodec="dca" />
</Video>
</Transcoding>
<OnlineTranscoding>
<Video targetContainer="mpeg" targetVCodec="mpeg2video" targetACodec="ac3" aBitrate="384">
<Matches container="mp4" />
<Matches container="flv" />
</Video>
<Audio targetContainer="lpcm">
<Matches container="mp3"/>
<Matches container="flv"/>
<Matches container="asf"/>
</Audio>
</OnlineTranscoding>
</Profile>