-
Notifications
You must be signed in to change notification settings - Fork 915
automatically stop overwrite #253
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
Comments
If you call ffmpeg-python like this: import ffmpeg
stream = ffmpeg.input('input.mp4')
stream = ffmpeg.output(stream, 'output.mp4')
ffmpeg.run(stream, overwrite_output=False) You can provide the |
I was not able to confirm this behavior. Current behavior:
Expected (intuitive) behavior:
|
I know that you can automatically overwrite if output exist with .overwrite_output()
but what if you don't want to overwrite?
it is not possible to add overwrite_output=True for over write and overwrite_output=False for not.
The text was updated successfully, but these errors were encountered: