linux - How to stop v4l2-ctl streaming? -
suppose run v4l2-ctl --stream-mmap=3 --stream-to=/dev/null
, how stop recording without pressing ctrl+c interrupt, shell console example?
unless have added better functionality, have signal process outside.
either v4l2-ctl ... & v4l2_ctl_pid=$!
, kill -term $v4l2_ctl_pid
or maybe killall v4l2-ctl
.
Comments
Post a Comment