FAQ  •  Register  •  Login

[HELP] WD TV PLAY - need assistance - NO DTS

<<

felixw

Serviio newbie

Posts: 4

Joined: Tue Jan 07, 2014 2:23 pm

Post Tue Jan 07, 2014 2:30 pm

[HELP] WD TV PLAY - need assistance - NO DTS

Hey guy,

i need your help by the configuration of my transcoding.
can somebody modify this profile and add that all DTS Audio lines are transcorded in to AC-3 please :)
  Code:
      <Transcoding>
         <Video targetContainer="mpeg">
            <Matches container="wtv" />
         </Video>
         <Video targetContainer="mpeg" targetVCodec="mpeg2video" targetACodec="ac3" aBitrate="384">
            <Matches container="flv" /> <!-- this is used by online content, assuming WDTV cannot play local flv either -->
            <Matches container="matroska" vCodec="vp8" />
            <Matches container="rm" />
         </Video>
            </Transcoding>
            <OnlineTranscoding>
         <Video targetContainer="mpeg" targetVCodec="mpeg2video" targetACodec="ac3" aBitrate="384">
            <Matches container="mp4" />
            <Matches container="asf" /> <!-- for mms:// -->
         </Video>
      </OnlineTranscoding>


my attampt is not working:
  Code:
<Transcoding>
         <Video targetContainer="mpeg">
            <Matches container="*" aCodec="dca" />
            <Matches container="wtv" />
         </Video>
         <Video targetContainer="mpeg" targetVCodec="mpeg2video" targetACodec="ac3" aBitrate="384">
            <Matches container="*" aCodec="dca" />
            <Matches container="flv" />
            <Matches container="matroska" vCodec="vp8" aCodec="dca" />
            <Matches container="rm" />
         </Video>
            </Transcoding>
            <OnlineTranscoding>
         <Video targetContainer="mpeg" targetVCodec="mpeg2video" targetACodec="ac3" aBitrate="384">
            <Matches container="*" aCodec="dca" />            
            <Matches container="mp4" />
            <Matches container="asf" /> <!-- for mms:// -->
         </Video>
      </OnlineTranscoding>   


and yes i have no idea what i am doing! i think this problem is pretty easy to solve!
but please help me guys!

Greetings and thanks in advance

ps. sorry for bad englisch!
<<

DenyAll

DLNA master

Posts: 2257

Joined: Fri Mar 08, 2013 11:16 pm

Location: Adelaide, Australia

Post Tue Jan 07, 2014 11:22 pm

Re: [HELP] WD TV PLAY - need assistance - NO DTS

The code you have:
  Code:
<Video targetContainer="mpeg">
       <Matches container="*" aCodec="dca" />
will only remux the existing video and existing audio into a mpeg2 container. The second appearance of the "dca" later in the profile is never matched (Serviio matches the first occurrence and acts on that - it never gets to the second statement).

You need to tell Serviio transcode the audio to AC3. Try:

  Code:
<Transcoding>
      <Video targetContainer="mpeg" targetVCodec="mpeg2video" targetACodec="ac3" aBitrate="384">
         <Matches container="flv" />
         <Matches container="matroska" vCodec="vp8" />
         <Matches container="rm" />
      </Video>
      <Video targetContainer="mpeg" targetACodec="ac3" aBitrate="384">
         <Matches container="*" aCodec="dca" />
     </Video>
      <Video targetContainer="mpeg">
         <Matches container="wtv" />
      </Video>
</Transcoding>
Note that I have removed the "dca" match from the "vp8" case (you don't have to do this, but this will cover a broader range of vp8 files, and audio transcoding is lightweight). Order is important - the DTS audio match occurs only for files that don't require video and audio transcoding, similarly the wtv case occurs only for files that dont require DTS audio transcoding (a wtv file with DTS will be appropriately handled by the dca match).
DenyAll
Panasonic Viera FX800A | Panasonic Viera CS610A | Sony PS4 | Sony PS3 | Panasonic DMP-BD79 | Yamaha RX-V500D | iPad | Windows 10 | Serviio 1.10.1 Pro
WinHelper | MediaInfo

Beta Tester, Moderator
Please do not PM me for support as any solution cannot be shared with others.
<<

felixw

Serviio newbie

Posts: 4

Joined: Tue Jan 07, 2014 2:23 pm

Post Wed Jan 08, 2014 10:04 pm

Re: [HELP] WD TV PLAY - need assistance - NO DTS

Hey thanks for that,
buT it still is not working i still get the message that my device cant play DTS.

hope anybody has a workaround....
i dont want to transcode my whole library by hand...

regards
<<

DenyAll

DLNA master

Posts: 2257

Joined: Fri Mar 08, 2013 11:16 pm

Location: Adelaide, Australia

Post Wed Jan 08, 2014 11:00 pm

Re: [HELP] WD TV PLAY - need assistance - NO DTS

After changing profiles.xml did you restart your PC? Serviio needs to be completely restarted for new profiles to be loaded. Did you check that the profile is assigned to the device (Serviio Console, Status tab) - if not, manually assign it.

This profile will transcode all DTS files so as long as transcoding is enabled, your device shouldnt actually get a DTS file....
DenyAll
Panasonic Viera FX800A | Panasonic Viera CS610A | Sony PS4 | Sony PS3 | Panasonic DMP-BD79 | Yamaha RX-V500D | iPad | Windows 10 | Serviio 1.10.1 Pro
WinHelper | MediaInfo

Beta Tester, Moderator
Please do not PM me for support as any solution cannot be shared with others.
<<

felixw

Serviio newbie

Posts: 4

Joined: Tue Jan 07, 2014 2:23 pm

Post Thu Jan 09, 2014 6:14 pm

Re: [HELP] WD TV PLAY - need assistance - NO DTS

yes i did... i stopped the whole service and then restarted it. and i did a reboot too to make sure.

my file has more then one audio stream in it. maybe this is confusion the match command...

does anybody has the WD TV Play at and can give me his profile?

how can i check which profile is getting used?

regards!
<<

DenyAll

DLNA master

Posts: 2257

Joined: Fri Mar 08, 2013 11:16 pm

Location: Adelaide, Australia

Post Thu Jan 09, 2014 10:12 pm

Re: [HELP] WD TV PLAY - need assistance - NO DTS

Can you please post MediaInfo details for the file. Serviio will only match the first audio stream.
DenyAll
Panasonic Viera FX800A | Panasonic Viera CS610A | Sony PS4 | Sony PS3 | Panasonic DMP-BD79 | Yamaha RX-V500D | iPad | Windows 10 | Serviio 1.10.1 Pro
WinHelper | MediaInfo

Beta Tester, Moderator
Please do not PM me for support as any solution cannot be shared with others.
<<

felixw

Serviio newbie

Posts: 4

Joined: Tue Jan 07, 2014 2:23 pm

Post Sun Jan 12, 2014 9:09 pm

Re: [HELP] WD TV PLAY - need assistance - NO DTS

Hey!
how can o post the mediainfo? about the file?

i just found Mezzmo now its also a LDNA server and with it everything works great! but i want to use serviio! i could not find a way to look in to the profiles of mezzmo its also using ffmpeg.

...
thanks for your help!
<<

DenyAll

DLNA master

Posts: 2257

Joined: Fri Mar 08, 2013 11:16 pm

Location: Adelaide, Australia

Post Mon Jan 13, 2014 12:51 am

Re: [HELP] WD TV PLAY - need assistance - NO DTS

DenyAll
Panasonic Viera FX800A | Panasonic Viera CS610A | Sony PS4 | Sony PS3 | Panasonic DMP-BD79 | Yamaha RX-V500D | iPad | Windows 10 | Serviio 1.10.1 Pro
WinHelper | MediaInfo

Beta Tester, Moderator
Please do not PM me for support as any solution cannot be shared with others.

Return to Transcoding

Who is online

Users browsing this forum: No registered users and 13 guests

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