如何使用Qt窗口的播放和暂停按钮播放或暂停mplayer?


0

如果我知道进程ID,如何使用Qt窗口的播放和暂停按钮播放或暂停mplayer?是否有任何命令停止和暂停使用PID?

Answers:


0

如果您不想成为多平台,则可以使用Linux SIGSTOP暂停和SIGCONT继续。

例如,使用PID 123停止进程:

kill -SIGSTOP 123

然后继续:

kill -SIGCONT 123

这不能直接移植到其他平台(大多数手机,Windows)。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.