FAQ  •  Register  •  Login

DMP-BDT220 canot play mp4 or mkv via serviio

<<

computerguy7

Serviio newbie

Posts: 7

Joined: Thu Dec 27, 2012 1:30 am

Post Thu Dec 27, 2012 1:43 am

DMP-BDT220 canot play mp4 or mkv via serviio

I have numerous home video files that use the AVCHD codec from my panasonic camcorder. They play fine via serviio to Panasonic TV (TC-L47E5) or Panasonic Bluray (DMP-BDT220).

My mp4 and mkv (h264 codec made by handbrake) only play on the TV, but not the bluray. I think the bluray must not support natively and therefore requires transcoding. Twonky plays both file types fine via DLNA, but serviio does not. Any suggestions?

- I tried tweaking profiles.xml, but I do not know what to try.
- I tried copying some new panasonic profiles from the serviio forums, but they also do not work.
error says, "cannot play file"
- since twonky can play file I think it is just a config issue on serviio, help please.

thanks for the help in advance.
<<

computerguy7

Serviio newbie

Posts: 7

Joined: Thu Dec 27, 2012 1:30 am

Post Thu Dec 27, 2012 2:46 am

Re: DMP-BDT220 canot play mp4 or mkv via serviio

update
in the forums I found this which did not work

<Profile id="24" name="Panasonic Viera With AVI Support" extendsProfileId="1">
<ContentDirectoryMessageBuilder>org.serviio.upnp.service.contentdirectory.PacketVideoDLNAMessageBuilder</ContentDirectoryMessageBuilder>
<SubtitlesMimeType>text/srt</SubtitlesMimeType>
<MediaFormatProfiles>
<MediaFormatProfile mime-type="video/divx">AVI</MediaFormatProfile>
</MediaFormatProfiles>
<Transcoding>
<!-- Transcode h264 videos with profile level > 4.1 to mpegts with ac3 audio -->
<Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3" maxVBitrate="20000">
<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>
<!-- remux VORBIS/FLAC/LPCM in MKV/MP4 to AC3 -->
<Video targetContainer="mpegts" targetACodec="ac3" >
<Matches container="matroska" vCodec="h264" aCodec="flac" />
<Matches container="matroska" vCodec="h264" aCodec="vorbis" />
<Matches container="matroska" vCodec="h264" aCodec="truehd" />
<Matches container="mp4" vCodec="h264" aCodec="lpcm"/>
<Matches container="mp4" vCodec="h264" aCodec="aac"/>
<Matches container="3gp" vCodec="h264" />
</Video>
<!-- Remux MPEG-TS with no transcoding -->
<Video targetContainer="mpegts">
<Matches container="avi" vCodec="h264" />
<Matches container="mp4" vCodec="h264" />
<Matches container="matroska" vCodec="mpeg2video"/>
</Video>
<!-- Remux WTV files to MPEG-PS with no transcoding-->
<Video targetContainer="mpeg">
<Matches container="wtv" />
</Video>
<!-- unsupported codecs will be transcoded into mpeg-ts, mpeg2 video and ac3 audio -->
<Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3">
<Matches container="avi" vCodec="mjpeg" />
<Matches container="avi" vCodec="dvvideo" />
<Matches container="mp4" vCodec="mjpeg" />
<Matches container="mp4" vCodec="mpeg4" />
<Matches container="mpeg" vCodec="mpeg1video" />
<Matches container="matroska" vCodec="mpeg4" />
<Matches container="asf" />
<Matches container="flv" />
<Matches container="ogg" />
<Matches container="3gp" />
</Video>
<!-- unsupported audio will be transcoded into lpcm audio -->
<Audio targetContainer="lpcm">
<Matches container="flac" />
<Matches container="ogg" />
<Matches container="asf" />
<Matches container="adts" />
</Audio>
</Transcoding>
</Profile>

I changed it to this and now the files play, but pause, fast forward, and rewind do not behave as expected. The video freezes.

<Profile id="25" name="Panasonic Viera With AVI Support" extendsProfileId="1">
<ContentDirectoryMessageBuilder>org.serviio.upnp.service.contentdirectory.PacketVideoDLNAMessageBuilder</ContentDirectoryMessageBuilder>
<SubtitlesMimeType>text/srt</SubtitlesMimeType>
<MediaFormatProfiles>
<MediaFormatProfile mime-type="video/divx">AVI</MediaFormatProfile>
</MediaFormatProfiles>
<Transcoding>
<!-- Transcode h264 videos with profile level > 4.1 to mpegts with ac3 audio -->
<Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3" maxVBitrate="20000">
<Matches container="avi" vCodec="h264" profile="high" levelGreaterThan="4.2" />
<Matches container="avi" 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>
<!-- remux VORBIS/FLAC/LPCM in MKV/MP4 to AC3 -->
<Video targetContainer="mpegts" targetACodec="ac3" >
<Matches container="matroska" vCodec="h264" aCodec="flac" />
<Matches container="matroska" vCodec="h264" aCodec="vorbis" />
<Matches container="matroska" vCodec="h264" aCodec="truehd" />
<Matches container="3gp" vCodec="h264" />
</Video>
<!-- Remux MPEG-TS with no transcoding -->
<Video targetContainer="mpegts">
<Matches container="avi" vCodec="h264" />
<Matches container="matroska" vCodec="mpeg2video"/>
</Video>
<!-- Remux WTV files to MPEG-PS with no transcoding-->
<Video targetContainer="mpeg">
<Matches container="wtv" />
</Video>
<!-- unsupported codecs will be transcoded into mpeg-ts, mpeg2 video and ac3 audio -->
<Video targetContainer="mpegts" targetVCodec="mpeg2video" targetACodec="ac3">
<Matches container="avi" vCodec="mjpeg" />
<Matches container="avi" vCodec="dvvideo" />
<Matches container="mp4" vCodec="mjpeg" />
<Matches container="mp4" vCodec="h264" />
<Matches container="mp4" vCodec="mpeg4" />
<Matches container="mpeg" vCodec="mpeg1video" />
<Matches container="matroska" vCodec="mpeg4" />
<Matches container="asf" />
<Matches container="flv" />
<Matches container="ogg" />
<Matches container="3gp" />
</Video>
<!-- unsupported audio will be transcoded into lpcm audio -->
<Audio targetContainer="lpcm">
<Matches container="flac" />
<Matches container="ogg" />
<Matches container="asf" />
<Matches container="adts" />
</Audio>
</Transcoding>
</Profile>


why did what I did help? Can I get FF and RW working or should I just be happy?
<<

computerguy7

Serviio newbie

Posts: 7

Joined: Thu Dec 27, 2012 1:30 am

Post Fri Dec 28, 2012 7:14 pm

Re: DMP-BDT220 canot play mp4 or mkv via serviio

i also noticed the hulu plugin works on my tv but not on my bluray player. my tv must support more codecs variations
<<

atc98092

User avatar

DLNA master

Posts: 5432

Joined: Fri Aug 17, 2012 10:22 pm

Location: Washington (the state)

Post Sun Dec 30, 2012 2:56 am

Re: DMP-BDT220 canot play mp4 or mkv via serviio

I had a BDT-220, but returned it because its DLNA functionality was no better than the -110 I already had. I've switched to the Sony SNP-N200 for most of my streaming, but unfortunately Sony discontinued it for a much more expensive box. The Sony seems to play just about everything I throw at it, including some ripped Blu-rays with Dolby TrueHD audio. It doesn't seem to support DTS Master Audio however. Have to stick with the standard DTS audio track.
Dan

LG NANO85 4K TV, Samsung JU7100 4K TV, Sony BDP-S3500, Sharp 4K Roku TV, Insignia Roku TV, Roku Ultra, Premiere and Stick, Nvidia Shield, Yamaha RX-V583 AVR.
Primary server: AMD Ryzen 5 5600GT, 32 gig ram, Windows 11 Pro, 22 TB hard drive space | Test server: Intel i5-6400, 16 gig ram, Windows 10 Pro

HOWTO: Enable debug logging HOWTO: Identify media file contents
<<

computerguy7

Serviio newbie

Posts: 7

Joined: Thu Dec 27, 2012 1:30 am

Post Mon Dec 31, 2012 1:04 am

Re: DMP-BDT220 canot play mp4 or mkv via serviio

I guess I get what I pay for. Do you suggest a better bluray player now?
<<

atc98092

User avatar

DLNA master

Posts: 5432

Joined: Fri Aug 17, 2012 10:22 pm

Location: Washington (the state)

Post Mon Dec 31, 2012 1:38 pm

Re: DMP-BDT220 canot play mp4 or mkv via serviio

computerguy7 wrote:I guess I get what I pay for. Do you suggest a better bluray player now?


As far as being a BD player, the 220 is outstanding. Its DLNA functionality isn't perfect, but does fairly well. I have no experience with any other players, but I have heard good things about Samsung.
Dan

LG NANO85 4K TV, Samsung JU7100 4K TV, Sony BDP-S3500, Sharp 4K Roku TV, Insignia Roku TV, Roku Ultra, Premiere and Stick, Nvidia Shield, Yamaha RX-V583 AVR.
Primary server: AMD Ryzen 5 5600GT, 32 gig ram, Windows 11 Pro, 22 TB hard drive space | Test server: Intel i5-6400, 16 gig ram, Windows 10 Pro

HOWTO: Enable debug logging HOWTO: Identify media file contents
<<

computerguy7

Serviio newbie

Posts: 7

Joined: Thu Dec 27, 2012 1:30 am

Post Mon Dec 31, 2012 4:13 pm

Re: DMP-BDT220 canot play mp4 or mkv via serviio

Have you found any xml profiles that work best with the BDT220?
<<

atc98092

User avatar

DLNA master

Posts: 5432

Joined: Fri Aug 17, 2012 10:22 pm

Location: Washington (the state)

Post Tue Jan 01, 2013 11:30 pm

Re: DMP-BDT220 canot play mp4 or mkv via serviio

computerguy7 wrote:Have you found any xml profiles that work best with the BDT220?


Since I no longer have it, I can't say for sure. I believe I was using the Panasonic Viera 2011 profile, but can't remember for certain.
Dan

LG NANO85 4K TV, Samsung JU7100 4K TV, Sony BDP-S3500, Sharp 4K Roku TV, Insignia Roku TV, Roku Ultra, Premiere and Stick, Nvidia Shield, Yamaha RX-V583 AVR.
Primary server: AMD Ryzen 5 5600GT, 32 gig ram, Windows 11 Pro, 22 TB hard drive space | Test server: Intel i5-6400, 16 gig ram, Windows 10 Pro

HOWTO: Enable debug logging HOWTO: Identify media file contents
<<

KrisDech

Serviio newbie

Posts: 15

Joined: Sun Dec 02, 2012 11:16 pm

Post Sat Jan 26, 2013 5:15 pm

Re: DMP-BDT220 canot play mp4 or mkv via serviio

You might want to check this thread for my BDT220 profile:

viewtopic.php?f=13&t=5983

Return to Panasonic

Who is online

Users browsing this forum: No registered users and 16 guests

Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group.
Designed by ST Software for PTF.