I have been incorporating subprocess calls in my program. I have had no issues with subprocess calls for other commands, but I am having trouble getting the command line inp
import shlex import pipes from subprocess import check_call command = 'ffmpeg -r 10 -i frame%03d.png -r ntsc ' + pipes.quote(out_movie) check_call(shlex.split(command))