如何停止通过java程序运行的ffmpeg(How to stop ffmpeg that runs

2019-10-18 06:23发布

我在Java中运行的ffmpeg。 使用p = Runtime.getRuntime().exec(command); 它是用来通过RED5服务器的视频流。

我的问题是需要的ffmpeg“Q”,以阻止被按下。 我怎样才能做到这一点? 我怎样才能送Q因数到正在运行的进程,因此将执行p.destroy(); 或类似的东西? 目前,它一直运行,直到我杀死在任务管理器的进程。 我使用的Windows7。

Answer 1:

注入“Q”键到正在运行的进程,你可以这样做:

OutputStream ostream = p.getOutputStream(); //Get the output stream of the process, which translates to what would be user input for the commandline
ostream.write("q\n".getBytes());       //write out the character Q, followed by a newline or carriage return so it registers that Q has been 'typed' and 'entered'.
ostream.flush();                          //Write out the buffer.

这应该成功“退出”正在运行的ffmpeg的过程。



文章来源: How to stop ffmpeg that runs through java process