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
Instantiating an AudioFileClip should works, as I realize my error after copying and pasting some vfx instead of afx for an AudioFileClip
I get this error AttributeError: 'AudioFileClip' object has no attribute 'is_mask'
AttributeError: 'AudioFileClip' object has no attribute 'is_mask'
After my realization I rather expect an error that says we can apply vfx on an AudioClip
from moviepy import AudioFileClip, afx, vfx audio_clip = AudioFileClip(music_path).with_effects([afx.AudioNormalize(), afx.MultiplyVolume(0.8), vfx.FadeIn(fade_time), vfx.FadeOut(fade_time)])
The text was updated successfully, but these errors were encountered:
Well you try to use video effect on an audio only clip, you should use AudioFadeIn/Out instead. I think we an close.
Sorry, something went wrong.
No branches or pull requests
Expected Behavior
Instantiating an AudioFileClip should works, as I realize my error after copying and pasting some vfx instead of afx for an AudioFileClip
Actual Behavior
I get this error
AttributeError: 'AudioFileClip' object has no attribute 'is_mask'
After my realization I rather expect an error that says we can apply vfx on an AudioClip
Steps to Reproduce the Problem
Specifications
The text was updated successfully, but these errors were encountered: