我使用--wait-event-and-download参数运行gphoto,这样我使用红外遥控器拍摄的照片就会保存到电脑中。
我设置了第二个脚本来中断等待过程并以编程方式拍照,如下所示:
#!/bin/sh
# shootnow.sh - stop the current gphoto2 process (if it exists),
# shoot a new image, then start a new wait-event process.
pkill -INT gphoto2 #send interrupt (i.e. ctrl+c) to gphoto2
sleep 0.1 #avoid the process ownership error
gphoto2 --capture-image-and-download #take a picture now
gphoto2 --wait-event-and-download #start a new wait-event process
但我想确保第一个等待事件进程当前没有下载图像,然后再中断它(这会导致图像填满相机的内存,导致进一步操作的混乱情况)。所以第二个脚本应该是这样的:
#!/bin/sh
# shootnow-with-check.sh - stop the current gphoto2 process (if it exists
# and isn't currently downloading an image), shoot a new image, then start
# a new wait-event process.
shootnow() { # same as previously, but now in a function
pkill -INT gphoto2
sleep 0.1
gphoto2 --capture-image-and-download
gphoto2 --wait-event-and-download
}
if [ ***current output line of gphoto2 process doesnt start with "Downloading"*** ] then
shootnow
else
echo "Capture aborted - a picture was just taken and is being saved."
fi
任何人都可以帮我解决这个问题吗?我可以读取正在运行的gphoto进程的当前输出行吗?
答案 0 :(得分:1)
我最终用这样的脚本来管理它:
#!/bin/bash
# gphoto2-expect.sh
# use expect to monitor gphoto2 during --capture-image-and-download with
# --interval=-1, adding in SIGUSR1 functionality except during a
# download event.
echo "Prepping system for camera"
killall PTPCamera
expect << 'EOS'
puts "Starting capture..."
if [catch "spawn gphoto2 --capture-image-and-download --interval=-1" gp_pid] {
Log $ERROR "Unable to start gphoto2.\n$gp_pid\n"
return 0
}
trap {exec kill -SIGUSR1 $gp_pid} SIGUSR1
set timeout -1
expect {
-i $spawn_id
"Downloading" {
trap {send_user "\n Ignoring request as currently downloading"} SIGUSR1 ; exp_continue
}
"Saving file as" {
sleep 0.1
trap {exec kill -SIGUSR1 $gp_pid} SIGUSR1 ; exp_continue
}
}
EOS
可以用另一个脚本触发:
#!/bin/bash
# trigger.sh - trigger an immediate capture
var=$(pidof expect)
kill -SIGUSR1 "$var"
答案 1 :(得分:1)
gphoto2有一个选项--hook-script FILENAME。 FILENAME必须是一个可执行的脚本,并在一些gphoto2事件上调用。然后该脚本有一个环境变量ACTION,您可以将其用于您的目的。 例如:您使用
调用gphoto2gphoto2 --capture-image-and-download --hook-script myhook.sh
和myhook.sh看起来像
#! /bin/bash
echo $ACTION
然后myhook.sh将被调用4次。它的输出是
init
start
download
stop
有关详细信息,请参阅man gphoto2。