ffmpeg-python
ffmpeg-python copied to clipboard
How to mention hide_banner?
I'm trying to convert a non-WAV file to WAV format.
Command line: ffmpeg -hide_banner -i '{"1.mp3"}' '{"1.wav"}'
Corresponding code I'm using: ffmpeg.input("1.mp3").output("1.wav").run()
But how to mention hide_banner?
I'm using out.global_args('-progress', '-hide_banner y')