Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我从另一个 shell 控制台运行v4l2-ctl --stream-mmap=3 --stream-to=/dev/null,如何在不按Ctrl+中断的情况下停止录制?C
v4l2-ctl --stream-mmap=3 --stream-to=/dev/null
除非他们添加了更好的功能,否则您将不得不简单地从外部发出该过程的信号。
要么v4l2-ctl ... & V4L2_CTL_PID=$!和kill -TERM $V4L2_CTL_PID
v4l2-ctl ... & V4L2_CTL_PID=$!
kill -TERM $V4L2_CTL_PID
或者干脆killall v4l2-ctl。
killall v4l2-ctl