I'm running ffmpeg on another machine for screen capture. I'd like to be able to stop it recording remotely. FFMPEG requires that q is pressed to stop encoding as it has to do some finalization to finish the file cleanly. I know I could kill it with kill/killall however this can lead to corrupt videos.
Press [q] to stop encoding
I can't find anything on google specifically for this, but some there is suggestion that echoing into /proc//fd/0 will work.
I've tried this but it does not stop ffmpeg. The q is however shown in the terminal in which ffmpeg is running.
echo -n q > /proc/16837/fd/0
So how can I send a character to another existing process in such a way it is as if it were typed locally? Or is there another way of remotely stopping ffmpeg cleanly.
You can also try to use "expect" to automate the execution and stop of the program. You would have to start it using some virtual shell like
screen
,tmux
orbyobu
and then start theffmpeg
inside of it. This way you would be able to get again the virtual shell screen and give the "q" option.Locally or remotely start a virtual shell session, lets say with "screen". Name the session with
-S
option, likescreen -S recvideo
Then you can start the ffmpeg as you like. You can, optionally, detach from this session with a Ctrl+a + d.Connect to the machine where the ffmpeg is running inside the screen (or tmux or whatever) and reconnect to it:
screen -d -RR recvideo
and then send the "q"To do that from inside a script you can then use expect, like:
Then, in another moment or script point or in another script you recover it:
You can also automate the whole
ssh
session with expect, passing a sequence of commands and "expects" to do what you want.Here's a neat trick I discovered when I was faced with this problem: Make an empty file (it doesn't have to be a named pipe or anything), then write 'q' to it when it's time to stop recording.
FFmpeg stops as though it got 'q' from the terminal STDIN.
Newer versions of ffmpeg don't use 'q' anymore, at least on Ubuntu Oneiric, instead they say to press Ctrl+C to stop them. So with a newer version you can simply use 'killall -INT' to send them SIGINT instead of SIGTERM, and they should exit cleanly.