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
I think I found a bug in the AudioClip class write_audiofile method. This is the code in the line 241:
AudioClip
write_audiofile
line 241
if not fps: if hasattr(self, "fps"): fps = 44100 else: fps = self.fps
And I think it should be this one:
if not fps: if hasattr(self, "fps"): fps = self.fps else: fps = 44100
The text was updated successfully, but these errors were encountered:
Fix issue Zulko#2330 audio write wrong fps
70ef9f7
Fixes a bug that is not setting the instance 'fps' value when it has the attribute, but doing it when it doesn't.
No branches or pull requests
I think I found a bug in the
AudioClip
classwrite_audiofile
method. This is the code in theline 241
:And I think it should be this one:
The text was updated successfully, but these errors were encountered: