El Samuko <[email protected]> added the comment:
FWIW, I could send CTRL-C to ffmpeg (else it won't write a valid mp4 header)
under Windows by using the WINPID and not the PID returned from ps .
```
WINPID=$(ps aux | grep ffmpeg | awk '{print $4}')
python -c "import os, signal; os.kill($WINPID, signal.CTRL_C_EVENT)"
```
I put an example here:
https://gist.github.com/elsamuko/9c3fe69f00a0f847251ffa3ef1d080a2
----------
nosy: +elsamuko
_______________________________________
Python tracker <[email protected]>
<https://bugs.python.org/issue42962>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com