FAQ  •  Register  •  Login

No Audio on DirecTV HD DVR HR20

<<

BigDog

Serviio newbie

Posts: 7

Joined: Tue Jan 25, 2011 5:51 pm

Post Wed Jan 26, 2011 12:42 am

No Audio on DirecTV HD DVR HR20

Hi,

I was able to get everything to work properly on my Sony BDP-S470.

But when trying it on my HR20, I am not getting any audio from my ripped DVDs. They are in 1 GB VOB files. The video looks great. I tried the AC3 to MP3 change in the config file and restarted the service. I also turned up the logging up to DEBUG, but that didn't show any issues in the log file. Here's what FFmpeg had to show for itself.

  Code:
FFmpeg version UNKNOWN, Copyright (c) 2000-2011 the FFmpeg developers
  built on Jan 10 2011 21:46:22 with gcc 4.4.2
  configuration: --enable-static --disable-shared --disable-shared --disable-ffp
lay --disable-ffserver --enable-memalign-hack --enable-libmp3lame --arch=x86 --e
nable-runtime-cpudetect --enable-w32threads --target-os=mingw32 --cross-prefix=i
686-mingw32-
  libavutil     50.36. 0 / 50.36. 0
  libavcore      0.16. 0 /  0.16. 0
  libavcodec    52.108. 0 / 52.108. 0
  libavformat   52.92. 0 / 52.92. 0
  libavdevice   52. 2. 3 / 52. 2. 3
  libavfilter    1.72. 0 /  1.72. 0
  libswscale     0.12. 0 /  0.12. 0
[mpeg @ 015ec4b0] max_analyze_duration reached

Seems stream 0 codec frame rate differs from container frame rate: 59.94 (60000/
1001) -> 29.97 (60000/2002)
Input #0, mpeg, from 'VTS_01_1.VOB':
  Duration: 00:25:12.91, start: 115.148644, bitrate: 5677 kb/s
    Stream #0.0[0x1e0]: Video: mpeg2video, yuv420p, 720x480 [PAR 32:27 DAR 16:9]
, 9800 kb/s, 24.10 fps, 29.97 tbr, 90k tbn, 59.94 tbc
    Stream #0.1[0x80]: Audio: ac3, 48000 Hz, 5.1, s16, 448 kb/s
At least one output file must be specified


I'd say it is not the VOB file since it works on the Sony BDP. Any thoughts? Do you need any more info?

Thank you,

BD
<<

BigDog

Serviio newbie

Posts: 7

Joined: Tue Jan 25, 2011 5:51 pm

Post Mon Jan 31, 2011 11:47 am

Re: No Audio on DirecTV HD DVR HR20

Okay, can anyone confirm that they are using VOB's with an HR20 and are getting sound?
<<

mediabob

Serviio newbie

Posts: 5

Joined: Tue Feb 01, 2011 8:35 pm

Post Sat Feb 05, 2011 1:59 pm

Re: No Audio on DirecTV HD DVR HR20

I have an DTV HR23-700 and I have "no" audio on my copied DVDs also and I am running the .5 version of Serviio.
<<

josh208

Serviio newbie

Posts: 7

Joined: Sun Nov 14, 2010 11:29 pm

Post Thu Feb 10, 2011 9:51 pm

Re: No Audio on DirecTV HD DVR HR20

A number of people have found that change targetACodec to 'mp3' does not work, this was the case for me. However, 0.5 now supports target of 'mp2'. This works!
Gleaned this from: http://www.serviio.org/index.php?option ... icle&id=24

Sidenote: I also had to set downmix to stereo under video settings on the Transcoding Tab otherwise FFMPEG would croak claiming impossible bitrate (Before doing this, I would not even get video).
<<

zip

User avatar

Serviio developer / Site Admin

Posts: 17212

Joined: Sat Oct 24, 2009 12:24 pm

Location: London, UK

Post Thu Feb 10, 2011 9:52 pm

Re: No Audio on DirecTV HD DVR HR20

So can you post your final profile? I guess it could be included in the next release as the proper DirecTV profile...
<<

josh208

Serviio newbie

Posts: 7

Joined: Sun Nov 14, 2010 11:29 pm

Post Mon Mar 07, 2011 10:15 pm

Re: No Audio on DirecTV HD DVR HR20

I apologize for the slow reply, I haven't checked in in awhile. The full profile is...


<Profile id="6" name="DirecTV HD-DVR" extendsProfileId="1">
<Detection>
<HttpHeaders>
<User-Agent>.*DIRECTV.*</User-Agent>
</HttpHeaders>
</Detection>
<Transcoding>
<Video targetContainer="mpeg" targetVCodec="mpeg2video" targetACodec="mp2" maxVBitrate="8192">
<Matches container="matroska" />
<Matches container="mp4" />
<Matches container="asf" />
<Matches container="avi" />
</Video>
</Transcoding>
</Profile>
<<

josh208

Serviio newbie

Posts: 7

Joined: Sun Nov 14, 2010 11:29 pm

Post Mon Mar 07, 2011 10:20 pm

Re: No Audio on DirecTV HD DVR HR20

Also, in order to retain AC3 audio when streaming to my Samsung Bluray player, I unchecked downmix and applied the following as a hack...

moved my ffmpeg binary to ffmpeg.bin and created the following script in place of ffmpeg. Basically this looks for usage of mp2 codec (-acodec mp2) and if that is set, it replaces the 'ac N' argument with 'ac 2' since 2 channel audio is the only thing that's appropriate for mp2.

#!/usr/bin/perl
my $args = join(' ',@ARGV);
if ($args =~ /-acodec mp2/) {
$args =~ s/ac \d/ac 2/;
}
exec "$0.bin $args";
<<

zip

User avatar

Serviio developer / Site Admin

Posts: 17212

Joined: Sat Oct 24, 2009 12:24 pm

Location: London, UK

Post Mon Mar 07, 2011 10:35 pm

Re: No Audio on DirecTV HD DVR HR20

thanks, there is an option on transcoding config to forceStereo, so you won't need the script anymore
<<

josh208

Serviio newbie

Posts: 7

Joined: Sun Nov 14, 2010 11:29 pm

Post Tue Mar 15, 2011 2:41 pm

Re: No Audio on DirecTV HD DVR HR20

Awesome. Thank you!

Return to Transcoding

Who is online

Users browsing this forum: No registered users and 26 guests

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