For example I am using ffplay
and want to run this command -bufsize[:stream_specifier] integer (output,audio,video)
At the moment I have this:
subprocess.call(["ffplay", "-vn", "-nodisp","-bufsize 4096", "%s" % url])
But this says it is invalid.
This is the way to go:
While using
shlex.split()
is overkill for your use case, many of the comments seem to be asking about the use of spaces in parameters in cases where a CLI allows you to pass in quoted strings containing spaces (i.e.git commit -m "Commit message here"
).Here is a quick python function that can be used to run commands including parameters with spaces:
As JBernardo mentioned in a comment, separate the
"-bufsize 4096"
argument into two,"-bufsize", "4096"
. Each argument needs to be separated whensubprocess.call
is used withshell=False
(the default). You can also specifyshell=True
and give the whole command as a single string, but this is not recommended due to potential security vulnerabilities.You should not need to use string formatting where you have
"%s" % url
. Ifurl
is a string, pass it directly, otherwise callstr(url)
to get a string representation.