I am attempting to call ffplay
in Python using subprocess
. When ffplay
is called, it opens a window with the video and outputs information to the console until the window is closed. I'd like to scrap the output and return to the Python script while the video continues to play (i.e., not closing the window).
Currently, I have:
# some code
subprocess.call(['ffplay', 'video.mp4'])
# some more code
How do I change this code to keep the window up and send the process output to the background to continue with the Python script?
Thanks in advance!
EDIT
Try this,
My output:
I think this is what you are looking for.