ffmpegwrapper
ffmpegwrapper copied to clipboard
A simple wrapper for ffmpeg-cli
Results
2
ffmpegwrapper issues
Sort by
recently updated
recently updated
newest added
`from ffmpegwrapper import FFmpeg, Input, Output` When running `FFmpeg('ffmpeg', Input('a.mp4'), Output('-b.mp4'))`, ffmpeg gives "Unrecognized option 'b.mp4'." It seems that the command becomes `ffmpeg -i a.mp4 -b.mp4` But the command should...
Hi, I am trying to convert quite a lot of m4a files into mp3 files with the following piece of code: ``` for root,dirs,files in os.walk("/Users/jonathan/Desktop/Music1"): for file1 in files:...