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 be ffmpeg -i a.mp4 -- -b.mp4 to prevent the issue (by adding --).