From a Python script I would like to open vlc in a new thread and allow the user to close it cleanly (still from this script). It appears that the send_signal() instruction does not actually close vlc, what am I doing wrong?
import subprocess
import signal
s = subprocess.Popen("vlc", shell=True)
raw_input("Press Enter to stop vlc...")
s.send_signal(signal.SIGINT)
print "waiting for vlc to exit..."
s.wait()
EDIT: I replaced vlc for testing/illustrating purposes but my real need is ending a stream being recorded by ffmpeg, which is normally listening to SIGINT since this is the standard signal to exit (it says "Press ctrl-c to stop encoding").
Ok I finally short-cut the shell with
And sending SIGINT/SIGKILL now actually closes the process. I have no explanation why the first option using the shell does not work however.