We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Suddenly audio distortions have started to appear in our audiosprites files. We're not sure if it's a change to node or what but here is a fix:
(In appendSilence function line 231)
buffer.fill(null)
becomes
buffer.fill(0)
I'm running node v0.11.12 and ffmpeg 2.2.3
Previously I had ffmpeg 1.2 and the pops/cracks were still in the generated file. Upgrading ffmpeg did not resolve the issue.
The text was updated successfully, but these errors were encountered:
6a321e3
Thanks for the report. For the reference, the change to Node is in nodejs/node-v0.x-archive@4b40358
Sorry, something went wrong.
The issue that caused it is now also fixed in node-master nodejs/node-v0.x-archive#8469
Awesome! thank you @tonistiigi
No branches or pull requests
Suddenly audio distortions have started to appear in our audiosprites files. We're not sure if it's a change to node or what but here is a fix:
(In appendSilence function line 231)
buffer.fill(null)
becomes
buffer.fill(0)
I'm running node v0.11.12 and ffmpeg 2.2.3
Previously I had ffmpeg 1.2 and the pops/cracks were still in the generated file. Upgrading ffmpeg did not resolve the issue.
The text was updated successfully, but these errors were encountered: