-
Notifications
You must be signed in to change notification settings - Fork 205
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Grating/popping sound at the end of wav file #39
Comments
The below might be a clue, though I have no idea how to achieve this. Hendrik-Jan |
So according to the wav specification, there is no meta data (as the spec is from the early 90ies or so). But maybe some CD grabbers do that nowadays. My assumption is, that the file says something in the header how many samples it contains and then appends stuff beyond that; while gstreamer attempts to just play everything as sound. Two things I'd try |
Agreed.
As I found in the second comment: this seems indeed to be related to some header or footer data that should not be read as part of the wav stream. |
Yes, this must be somewhere in gstreamer, as gmrender-resurrect passes all sound-file handling directly to gstreamer (gmrender never touches the raw audio stream; it essentially just passes the URL to gstreamer). If you can create a minimal *.wav file and can create a gst-launch pipeline ( http://gstreamer.freedesktop.org/data/doc/gstreamer/head/faq/html/chapter-using.html ) that exposes that problem, then you should file a bug with them: http://gstreamer.freedesktop.org/bugs/ |
OK, filed it against gstreamer. |
After more than a month, we found out the issue: |
Glad it works now. Enjoy! |
Hi HZeller,
not sure you can do anything about this, but here goes:
At the end of playing a .wav file, there is an audible grating or popping noise.
This seems to be related to metadata that is added to the wav file.
More on this here: http://www.psaudio.com/vanilla/discussion/3135/white-noise-at-end-of-wav-files/p1
It seems this is not only happening to gmrender-resurrect, but to more devices. The solution is to disable meta information in the wav, which is a problem again on the dlna "remote" side in finding the right song.
Is there anything you can do about this?
thanks,
Hendrik-Jan
The text was updated successfully, but these errors were encountered: