<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel>
        <title>YouTube Audio problem</title>
        <description> Hi

when I downloaded the video below

[www.youtube.com]

the 360p version has sound 

the 480p vid is completely silent.  (maybe remux issue ?)

thanks..</description>
        <link>https://wordrider.net/forum/10/16319/16319/_subject_#msg-16319</link>
        <lastBuildDate>Sat, 11 Apr 2026 15:59:32 +0000</lastBuildDate>
        <generator>Phorum 5.2.10</generator>
        <item>
            <guid>https://wordrider.net/forum/10/16319/16374/_subject_#msg-16374</guid>
            <title>Re: YouTube Audio problem</title>
            <link>https://wordrider.net/forum/10/16319/16374/_subject_#msg-16374</link>
            <description><![CDATA[ yea I'm still on XP and my ffmpeg is pretty old too, need to update.. <br />
Thanks from taiwan..]]></description>
            <dc:creator>affter333</dc:creator>
            <category>FreeRapid Downloader - Plugins</category>
            <pubDate>Fri, 22 May 2015 16:17:45 +0000</pubDate>
        </item>
        <item>
            <guid>https://wordrider.net/forum/10/16319/16373/_subject_#msg-16373</guid>
            <title>Re: YouTube Audio problem</title>
            <link>https://wordrider.net/forum/10/16319/16373/_subject_#msg-16373</link>
            <description><![CDATA[ tong2shot Wrote:<br />
-------------------------------------------------------<br />
&gt; As stated in mediainfo (by me and TVjunkie) it's<br />
&gt; AAC and stereo, but the left channel is completely<br />
&gt; flat.<br />
&gt; <br />
&gt; Here is the waveform from audacity (sound editor)<br />
&gt; :<br />
&gt; [<a href="http://s15.postimg.org/w1t0vdbnf/FRD_audacity.png" rel="nofollow" >s15.postimg.org</a>]<br />
&gt; <br />
&gt; So I think your video player and sound editor need<br />
&gt; to be updated :-)<br />
<br />
ok, thanks , my goldwave is like 5 years old, need to updated..]]></description>
            <dc:creator>affter333</dc:creator>
            <category>FreeRapid Downloader - Plugins</category>
            <pubDate>Fri, 22 May 2015 16:15:09 +0000</pubDate>
        </item>
        <item>
            <guid>https://wordrider.net/forum/10/16319/16346/_subject_#msg-16346</guid>
            <title>Re: YouTube Audio problem</title>
            <link>https://wordrider.net/forum/10/16319/16346/_subject_#msg-16346</link>
            <description><![CDATA[ affter333 wrote:<br />
-------------------------------------------------------<br />
&gt; so maybe 480p is AC3 or something <br />
&gt; that's not just 2 channel stereo ???<br />
<br />
This is definitely NOT the case. <br />
This is still AAC LC @128kbpsABR, SR=44.1kHz, ac=2 (stereo)<br />
MediaInfo would have shown it if it was otherwise - <br />
I have several files with AC3 encoding (AVI, MP4 but mainly MKV) <br />
and MediaInfo always detects correctly the audio stream...<br />
<br />
The following ffmpeg command extracts losslessy the audio stream <br />
from your "dropbox" video file:<br />
<pre class="bbcode">ffmpeg -i foo.mp4 -vn -c:a copy -f adts audio.aac</pre>
"foo.mp4" is your renamed file, for ease of use...<br />
I have attached the ffmpeg extraction log, <br />
where you can also see it reporting that:<br />
<pre class="bbcode">Audio: aac (mp4a / 0x6134706D), 44100 Hz, stereo, fltp, 125 kb/s</pre>
The raw audio stream is then loaded fine on the lossless MP3/AAC <br />
audio editor <a href="http://mpesch3.de1.cc/mp3dc.html" rel="nofollow" >mp3DirectCut v2.20</a><br />
See attached screenshot...<br />
<br />
&gt; but strange enough, the 360p version does have<br />
&gt; sound on my system, but not 480p , <br />
<br />
From your "youtube settings.jpg" screenshot I <br />
can tell you are (still) on Windows XP and you <br />
are using some codec pack (possibly K-Lite) <br />
which contains ffdshow & MPC-HC - has this been <br />
updated to a recent version? <br />
Maybe you need to fine tune it better (via Codec <br />
Tweak Tool?) - perhaps change the MP4 splitter <br />
to Haali?<br />
<br />
&gt; but the 480p is complete blank, it seems that<br />
&gt; even goldwave can't get the audio from 480p. <br />
<br />
 In any case, as you know, the 360p file downloads <br />
as a standalone MP4 one, while the 480p downloads <br />
as individual dash streams that - according to user <br />
setting - get muxed to MP4 via the internal, java based, <br />
multiplexer. The devs themselves have said that this <br />
is not the optimal solution, but works in 99.9% of cases. <br />
Maybe your Goldwave editor (a payware I haven't tried) <br />
doesn't like something in the MP4 headers of this <br />
particular file - hard to tell...<br />
FRD itself is a downloader, not a fully featured AV suite. <br />
It creates FLV/MP4/TS files that usually work in decent <br />
players for viewing and this is enough...<br />
For further editing/manipulation of those files, <br />
you are free to use the software of your choice...<br />
<br />
If the MP4 container created by FRD doesn't <br />
work well in Goldwave (and you must use this one), <br />
I would suggest you demux both streams to raw ones<br />
(you can use ffmpeg:<br />
Video stream:<br />
ffmpeg -i foo.mp4 -an -c:v copy -bsf:v h264_mp4toannexb -f h264 videoES.h264<br />
Audio stream:<br />
ffmpeg -i foo.mp4 -vn -c:a copy -f adts audioES.aac)<br />
and then mux again to MP4 (or MKV) container <br />
via another multiplexer - I personally use MP4Box, <br />
but ffmpeg is simpler:<br />
ffmpeg -i videoES.h264 -i  audioES.aac -c copy -bsf:a aac_adtstoasc -f mp4 foo-remuxed.mp4).<br />
If this new file doesn't work still, maybe contact <br />
Goldwave, if a registered user...<br />
I am putting this to rest now; so should you...<br />
<br />
Regards to China?]]></description>
            <dc:creator>TVjunkie</dc:creator>
            <category>FreeRapid Downloader - Plugins</category>
            <pubDate>Mon, 18 May 2015 17:16:15 +0000</pubDate>
        </item>
        <item>
            <guid>https://wordrider.net/forum/10/16319/16345/_subject_#msg-16345</guid>
            <title>Re: YouTube Audio problem</title>
            <link>https://wordrider.net/forum/10/16319/16345/_subject_#msg-16345</link>
            <description><![CDATA[ As stated in mediainfo (by me and TVjunkie) it's AAC and stereo, but the left channel is completely flat.<br />
<br />
Here is the waveform from audacity (sound editor) :<br />
<img src="http://s15.postimg.org/w1t0vdbnf/FRD_audacity.png" class="bbcode" border="0" /><br />
<br />
So I think your video player and sound editor need to be updated :-)]]></description>
            <dc:creator>tong2shot</dc:creator>
            <category>FreeRapid Downloader - Plugins</category>
            <pubDate>Mon, 18 May 2015 15:50:16 +0000</pubDate>
        </item>
        <item>
            <guid>https://wordrider.net/forum/10/16319/16344/_subject_#msg-16344</guid>
            <title>Re: YouTube Audio problem</title>
            <link>https://wordrider.net/forum/10/16319/16344/_subject_#msg-16344</link>
            <description><![CDATA[ TVjunkie Wrote:<br />
-------------------------------------------------------<br />
&gt; affter333 wrote:<br />
&gt; --------------------------------------------------<br />
&gt; -----<br />
&gt; &gt; 480p direct download from my dropbox<br />
&gt; <br />
&gt; Hello ;-)<br />
&gt; <br />
&gt; Just downloaded and unrared - <br />
&gt; your file DOES HAVE an audio stream <br />
&gt; inside the MP4 container!<br />
&gt; I am on Windows Vista SP2 x86 and <br />
&gt; by probing your file with MediaInfo <br />
&gt; you can see for yourself in the attached log.<br />
&gt; <br />
&gt;   If you play back the file with Quicktime <br />
&gt; (for Windows) v7.7.6 (latest), it is indeed true <br />
&gt; that no audio is reproduced. <br />
&gt; But if you play back the file in any decent MP4 <br />
&gt; player (VLC 2.2.1 / MPC-HC 1.7.8 / MPC-BE 1.4.4 <br />
&gt; and others) you do get audio BUT ONLY FROM <br />
&gt; THE RIGHT CHANNEL, as I have posted previously.<br />
&gt;  The original file uploaded on youtube must've<br />
&gt; been <br />
&gt; faulty, since the same audio behaviour is<br />
&gt; exhibited <br />
&gt; on the youtube page itself...<br />
&gt; <br />
&gt; AFAICT, there's nothing wrong with the FRD youtube<br />
&gt; plugin. <br />
&gt;  For your convenience, I demuxed the audio <br />
&gt; stream from the MP4 file with FFmpeg (it's a raw <br />
&gt; ADTS file with .aac extension), and then, using<br />
&gt; again FFmpeg, <br />
&gt; I have transcoded it to a mono MP3 file, which I<br />
&gt; attached.<br />
&gt; (NB: I have edited out the silent parts in the<br />
&gt; start & end, <br />
&gt; to reduce file size...).<br />
&gt; Enjoy your chant!<br />
&gt; <br />
&gt; Regards<br />
<br />
<br />
Hi:<br />
<br />
Thanks for the info, it's very help<br />
looks like it's a player issue,<br />
<br />
but strange enough, the 360p version does have sound<br />
on my system, but not 480p , <br />
<br />
and when I loaded both clips into goldwave (sound editor) , <br />
the 360p has waveform only on right channel.<br />
but the 480p is complete blank, it seems that even<br />
goldwave can't get the audio from 480p. <br />
<br />
so maybe 480p is AC3 or something that's not just 2 channel stereo ???]]></description>
            <dc:creator>affter333</dc:creator>
            <category>FreeRapid Downloader - Plugins</category>
            <pubDate>Mon, 18 May 2015 03:32:40 +0000</pubDate>
        </item>
        <item>
            <guid>https://wordrider.net/forum/10/16319/16343/_subject_#msg-16343</guid>
            <title>Re: YouTube Audio problem</title>
            <link>https://wordrider.net/forum/10/16319/16343/_subject_#msg-16343</link>
            <description><![CDATA[ affter333 wrote:<br />
-------------------------------------------------------<br />
&gt; 480p direct download from my dropbox<br />
<br />
Hello ;-)<br />
<br />
Just downloaded and unrared - <br />
your file DOES HAVE an audio stream <br />
inside the MP4 container!<br />
I am on Windows Vista SP2 x86 and <br />
by probing your file with <a href="https://mediaarea.net/nn/MediaInfo/Download" rel="nofollow" >MediaInfo</a> <br />
you can see for yourself in the attached log.<br />
<br />
  If you play back the file with Quicktime <br />
(for Windows) v7.7.6 (latest), it is indeed true <br />
that no audio is reproduced. <br />
But if you play back the file in any decent MP4 <br />
player (VLC 2.2.1 / MPC-HC 1.7.8 / MPC-BE 1.4.4 <br />
and others) you do get audio BUT ONLY FROM <br />
THE RIGHT CHANNEL, as I have posted previously.<br />
 The original file uploaded on youtube must've been <br />
faulty, since the same audio behaviour is exhibited <br />
on the youtube page itself...<br />
<br />
AFAICT, there's nothing wrong with the FRD youtube plugin. <br />
 For your convenience, I demuxed the audio <br />
stream from the MP4 file with FFmpeg (it's a raw <br />
ADTS file with .aac extension), and then, using again FFmpeg, <br />
I have transcoded it to a mono MP3 file, which I attached.<br />
(NB: I have edited out the silent parts in the start & end, <br />
to reduce file size...).<br />
Enjoy your chant!<br />
<br />
Regards]]></description>
            <dc:creator>TVjunkie</dc:creator>
            <category>FreeRapid Downloader - Plugins</category>
            <pubDate>Mon, 18 May 2015 02:54:19 +0000</pubDate>
        </item>
        <item>
            <guid>https://wordrider.net/forum/10/16319/16342/_subject_#msg-16342</guid>
            <title>Re: YouTube Audio problem</title>
            <link>https://wordrider.net/forum/10/16319/16342/_subject_#msg-16342</link>
            <description><![CDATA[ Hi:<br />
<br />
480p direct download from my dropbox<br />
<br />
[<a href="https://dl.dropboxusercontent.com/s/xgh4i628inbh1wg/480p_no_sound.rar?dl=1" rel="nofollow" >dl.dropboxusercontent.com</a>]]]></description>
            <dc:creator>affter333</dc:creator>
            <category>FreeRapid Downloader - Plugins</category>
            <pubDate>Sun, 17 May 2015 22:37:21 +0000</pubDate>
        </item>
        <item>
            <guid>https://wordrider.net/forum/10/16319/16333/_subject_#msg-16333</guid>
            <title>Re: YouTube Audio problem</title>
            <link>https://wordrider.net/forum/10/16319/16333/_subject_#msg-16333</link>
            <description><![CDATA[ tong2shot wrote:<br />
-------------------------------------------------------<br />
&gt; Yes, I can hear the sound.<br />
<br />
 One oddity with this particular video, <br />
both on the youtube on-line player <br />
or when playing back the downloaded <br />
clip (with FRD - or other downloader) <br />
in a software player is that it appears <br />
THERE'S (practically) ONLY SOUND <br />
ON THE RIGHT AUDIO CHANNEL. :S<br />
I do have my laptop connected to a <br />
Hi-Fi System and this is easily perceived...<br />
No clue if this audio peculiarity has <br />
anything to do with OP's issue...8-)<br />
<br />
Regards]]></description>
            <dc:creator>TVjunkie</dc:creator>
            <category>FreeRapid Downloader - Plugins</category>
            <pubDate>Sat, 16 May 2015 13:56:13 +0000</pubDate>
        </item>
        <item>
            <guid>https://wordrider.net/forum/10/16319/16332/_subject_#msg-16332</guid>
            <title>Re: YouTube Audio problem</title>
            <link>https://wordrider.net/forum/10/16319/16332/_subject_#msg-16332</link>
            <description><![CDATA[ Also, what do your YT plugin settings look like?]]></description>
            <dc:creator>ntoskrnl</dc:creator>
            <category>FreeRapid Downloader - Plugins</category>
            <pubDate>Sat, 16 May 2015 11:05:47 +0000</pubDate>
        </item>
        <item>
            <guid>https://wordrider.net/forum/10/16319/16331/_subject_#msg-16331</guid>
            <title>Re: YouTube Audio problem</title>
            <link>https://wordrider.net/forum/10/16319/16331/_subject_#msg-16331</link>
            <description><![CDATA[ Yes, I can hear the sound.<br />
<br />
Yes, please upload it.<br />
<br />
Here is mine : [<a href="https://drive.google.com/file/d/0Bz8gXqggkJRqQXY5b2NRUHNFbkU/view?usp=sharing" rel="nofollow" >drive.google.com</a>]<br />
<br />
Have you tried to download it again? Maybe it's temporary problem.]]></description>
            <dc:creator>tong2shot</dc:creator>
            <category>FreeRapid Downloader - Plugins</category>
            <pubDate>Sat, 16 May 2015 11:00:42 +0000</pubDate>
        </item>
        <item>
            <guid>https://wordrider.net/forum/10/16319/16330/_subject_#msg-16330</guid>
            <title>Re: YouTube Audio problem</title>
            <link>https://wordrider.net/forum/10/16319/16330/_subject_#msg-16330</link>
            <description><![CDATA[ can you actually hear the voice on 480p vid ?<br />
<br />
I loaded it into goldwave (sound editor),<br />
<br />
the audio track is completely blank , no wave form at all..<br />
<br />
I can upload the video to dropbox if you want to take a look at it..]]></description>
            <dc:creator>affter333</dc:creator>
            <category>FreeRapid Downloader - Plugins</category>
            <pubDate>Sat, 16 May 2015 05:23:57 +0000</pubDate>
        </item>
        <item>
            <guid>https://wordrider.net/forum/10/16319/16322/_subject_#msg-16322</guid>
            <title>Re: YouTube Audio problem</title>
            <link>https://wordrider.net/forum/10/16319/16322/_subject_#msg-16322</link>
            <description><![CDATA[ Works fine for me, tested with VLC and SMPlayer. Here's the <a href="http://privatepaste.com/0c91cb3517" rel="nofollow" >media info</a>, I can't paste it here because the forum code can't handle some character sets. <br />
<br />
Anything in the log?]]></description>
            <dc:creator>tong2shot</dc:creator>
            <category>FreeRapid Downloader - Plugins</category>
            <pubDate>Thu, 14 May 2015 23:02:07 +0000</pubDate>
        </item>
        <item>
            <guid>https://wordrider.net/forum/10/16319/16319/_subject_#msg-16319</guid>
            <title>YouTube Audio problem</title>
            <link>https://wordrider.net/forum/10/16319/16319/_subject_#msg-16319</link>
            <description><![CDATA[ Hi<br />
<br />
when I downloaded the video below<br />
<br />
[<a href="https://www.youtube.com/watch?v=HOnZpE3TSUA" rel="nofollow" >www.youtube.com</a>]<br />
<br />
the 360p version has sound <br />
<br />
the 480p vid is completely silent.  (maybe remux issue ?)<br />
<br />
thanks..]]></description>
            <dc:creator>affter333</dc:creator>
            <category>FreeRapid Downloader - Plugins</category>
            <pubDate>Thu, 14 May 2015 19:30:01 +0000</pubDate>
        </item>
    </channel>
</rss>
