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
As this one reports ValueError, this would allow lossless audio encoding
ValueError
from moviepy import editor as mp clip = mp.ColorClip((100,) * 2, color = (0,) * 3, duration = 2) audio_clip = mp.AudioFileClip("in.wav") clip = clip.set_audio(audio_clip) clip.write_videofile( "out.mp4", fps = 24, codec = "libx264", audio_fps = clip.audio.fps, audio_codec = "flac", rewrite_audio = False, # ignored ffmpeg_params = ["-strict", "-2"], )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As this one reports
ValueError
, this would allow lossless audio encodingThe text was updated successfully, but these errors were encountered: