I'm trying to call simple ffmpeg command line with subprocess.call.
(Example : ffmpeg -i input\video.mp4 -r 30 input\video.avi)
By typing directly the ffmpeg command it works, but when I try to call it with subprocess.call : subprocess.call('ffmpeg -i input\video.mp4 -r 30 input\video.avi', shell=True) there is no error, but it doesn't produce anything.
Any idea where can be the problem? (I'm working with python 3.4 or 2.7, I tried both)
shell=Trueon Windows here.