我想创建一个OS X应用程序,它会在某个时间间隔内连续捕获照片,并通过任何服务(HTTP / Socket)将该照片发送到服务器。
我搜索了这个并获得了同样的功能,我需要为后台运行的mac进行守护进程服务(使用launchd)。
但我仍然对这个程序感到困惑。
例如,我创建了一个plist文件
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.me.lc1</string>
<key>ProgramArguments</key>
<array>
<string>/Documents/LD/FirstScript.sh</string>
</array>
<key>OnDemand</key>
<false/>
<key>Nice</key>
<integer>1</integer>
<key>StartInterval</key>
<integer>10</integer>
<key>StandardErrorPath</key>
<string>/Documents/LD/Error_log.log</string>
<key>StandardOutPath</key>
<string>/Documents/LD/Output_log.log</string>
</dict>
</plist>
我将plist文件复制到〜/ Library / LaunchAgents
然后使用命令
launchctl load ~/Library/LaunchAgents/com.me.lc1.plist
但我现在没有得到任何输出。
对于照片捕捉,我使用的是imagesnap(Referred):
./imagesnap
如何在后台实现照片捕获和服务(HTTP / Socket)实现?
如何在后台将照片发送到服务器?
需要帮助。