After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 584813 - audiorate introduces noise into an audio stream
audiorate introduces noise into an audio stream
Status: RESOLVED DUPLICATE of bug 549940
Product: GStreamer
Classification: Platform
Component: gst-plugins-base
0.10.23
Other Linux
: Normal normal
: git master
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2009-06-04 11:49 UTC by Henrique Ferreiro
Modified: 2009-06-04 14:34 UTC
See Also:
GNOME target: ---
GNOME version: 2.25/2.26



Description Henrique Ferreiro 2009-06-04 11:49:26 UTC
I am using a script to transcode videos to the PS3 like this:

gst-launch-0.10 -v \
    filesrc location="$1".avi ! decodebin2 name=dec \
    filesrc location="$1".srt ! subparse ! txt. \
    mpegtsmux name=mux ! filesink location="$1".mpg \
    dec. ! queue ! audioconvert ! audiorate ! audioresample ! \
           audio/x-raw-int, channels=\(int\)2 ! \
           faac bitrate=128000 profile=LC ! mux. \
    de. ! queue ! \
           textoverlay name=txt font-desc="Droid Sans 30" ! \
           x264enc pass=cbr bitrate=1024 me=umh subme=6 ref=2 threads=0 ! \
           queue ! progressreport ! mux.

Using this with some files which have ac3 audio makes them sound with "clicks". The problem is solved if I remove the audiorate element.
Comment 1 Wim Taymans 2009-06-04 14:34:24 UTC
It's because audio decoders don't produce jitter corrected timestamps yet and audiorate patches this up with silence + dropping samples.

*** This bug has been marked as a duplicate of 549940 ***