mjpg-streamer 稼動の下では,画像キャプチャーコマンド raspistill は使えない。
~ $ raspistill -o image.jpg -w 1200 -h 900
mmal: mmal_vc_component_enable: failed to enable component: ENOSPC
mmal: camera component couldn't be enabled
mmal: main: Failed to create camera component
mmal: Failed to run camera app. Please check for firmware updates
これに代わる方法として,wget を用いて,MJPG-streamer のストリーミング画像からスナップショット画像を取得:
$ wget -O image.jpg http://192.168.1.150:8080/?action=snapshot
--2021-02-13 16:49:34-- http://192.168.1.150:8080/?action=snapshot
Connecting to 192.168.1.150:8080... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [image/jpeg]
Saving to: 'image.jpg'
image.jpg [ <=> ] 493.11K 319KB/s in 1.5s
2021-02-13 16:49:36 (319 KB/s) - 'image.jpg' saved [504940]
wget
|