HELP NEEDED: Arris Media Gateway / WOW! Ultra TV
I've been closely following this thread http://forum.serviio.org/viewtopic.php?f=7&t=5462 on getting Serviio to transcode to the Wow! Ultra TV Service (Arris Media Gateway/Players).
It seems like the two that were trying to work it out figured out how to do it, yet left it relatively unfinished on the thread itself (maybe due to this service not being so wide spread??).
Well anyway the last entry of coding that they had was the one listed below. However when I add this to my profiles.xml file, the Serviio app refuses to open/stay open. Once I remove this entry, everything is fine. Can someone please help me with getting this to work??
Final Listed Code (Not Working):
- Code:
<Profile id="22" name="Arris Media Player Final Fixed" extendsProfileId="1">
<Detection>
<HttpHeaders>
<User-Agent>.*MOXI.*</User-Agent>
</HttpHeaders>
<UPnPSearch>
<FriendlyName>^MOXI.*$</FriendlyName>
</UPnPSearch>
</Detection>
<Transcoding>
<!-- Transcode H264 videos with profile level > 4.1 to MPEGTS with AC3 audio -->
<Video targetContainer="mpegts" targetACodec="ac3" >
<Matches container="avi" vCodec="h264" profile="high" levelGreaterThan="4.2" />
<Matches container="avi" vCodec="h264" profile="main" levelGreaterThan="4.2" />
<Matches container="mp4" vCodec="h264" profile="high" levelGreaterThan="4.2" />
<Matches container="mp4" vCodec="h264" profile="main" levelGreaterThan="4.2" />
<Matches container="matroska" vCodec="h264" profile="high" levelGreaterThan="4.2" />
<Matches container="matroska" vCodec="h264" profile="main" levelGreaterThan="4.2" />
</Video>
<!-- Transcode H264 files with DTS audio to MPEG-TS with AC3 audio -->
<Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3" >
<Matches container="avi" vCodec="h264" aCodec="dca" />
<Matches container="mp4" vCodec="h264" aCodec="dca" />
<Matches container="matroska" vCodec="h264" aCodec="dca" />
</Video>
<!-- Remux H264 files to MPEG-TS with no transcoding -->
<Video targetContainer="mpegts">
<Matches container="avi" vCodec="h264" />
<Matches container="matroska" vCodec="h264" />
</Video>
<!-- Remux WTV/FLV files to MPEG-PS with no transcoding -->
<Video targetContainer="mpeg">
<Matches container="wtv" />
<Matches container="flv" />
</Video>
<!-- Transcode unsupported codecs into MPEGTS, mpeg2video and AC3 audio -->
<Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3">
<Matches container="avi" />
<Matches container="ogg" />
<Matches container="3gp" />
<Matches container="matroska" />
</Video>
<!-- Transcoded unsupported audio into LPCM audio -->
<Audio targetContainer="lpcm">
<Matches container="ogg" />
<Matches container="mp3" />
<Matches container="flac" />
<Matches container="adts" />
</Audio>
</Transcoding>
</Profile>