For example I am using ffplay and want to run this command -bufsize[:stream_specifier] integer (output,audio,video)
ffplay
-bufsize[:stream_specifier] integer (output,audio,video)
At the moment I have th
This is the way to go:
url = 'http://www.whatever.com' cmd = 'ffplay -vn -nodisp -bufsize 4096 '.split() subprocess.call(cmd + [str(url)], shell=False)