Hello I am sure this has been answered before, but I cant find the correct search terms to find it.
I would like to run a command in a sub process and check the output, but I dont want to see it in the terminal window.
I want to check a file with ffprobe
and return the response in a way where I can see...
if "video" in ffprobe_output:
print ("True")
else:
print ("False")
But while hiding it from printing in the console.