Windows Vista PC でバッチ ファイルを使用して、GoPro Hero 3+ Black カメラからメディアを制御およびダウンロードしています。https://github.com/KonradIT/goprowifihackの WiFi ハッキングの工夫のおかげで、curl
URL を使用してカメラに録画の開始と停止、モードの変更などを指示できます。その後、カメラからファイルを自分の PC にダウンロードするために使用できますwget
。ハードドライブ。
私の問題は、ループを約9回実行した後(さまざまです)、接続が失われることです。
curl: (7) failed to connect to 10.5.5.9 port 80: Timed out
接続を過負荷にするようなことをしていますか?
私の問題に関連すると思われるコードは次のとおりです。
echo off
setlocal enabledelayedexpansion
REM turn on the camera
curl http://10.5.5.9/bacpac/PW?t=password^&p=%%01
timeout 10 /nobreak
REM delete all previous files
curl http://10.5.5.9/camera/DA?t=password
timeout 10 /nobreak
REM begin recording video
curl http://10.5.5.9/bacpac/SH?t=password^&p=%%01
timeout 60 /nobreak
REM stop recording
curl http://10.5.5.9/bacpac/SH?t=password^&p=%%00
for /l %%a in (1,1,1000) do (
REM download video files
wget -b -r -A .MP4 -nH --cut-dirs=3 http://10.5.5.9:8080/videos/DCIM/100GOPRO/
timeout 10 /nobreak
REM change to timelapse mode
curl http://10.5.5.9/camera/CM?t=password^&p=%%03
timeout 5 /nobreak
REM begin timelapse
curl http://10.5.5.9/bacpac/SH?t=password^&p=%%01
timeout 200 /nobreak
REM end timelapse
curl http://10.5.5.9/bacpac/SH?t=password^&p=%%00
REM download JPEGs
wget -b -r -A .JPG -nH --cut-dirs=3 http://10.5.5.9:8080/videos/DCIM/100GOPRO/
timeout 10 /nobreak
REM change to video mode
curl http://10.5.5.9/camera/CM?t=password^&p=%%00
REM wait for awhile until the next measurement
timeout 200 /nobreak
REM delete all files (since enough time has elapsed for them to be downloaded)
curl http://10.5.5.9/camera/DA?t=password
timeout 10 /nobreak
REM begin recording video
curl http://10.5.5.9/bacpac/SH?t=password^&p=%%01
timeout 60 /nobreak
REM end recording video
curl http://10.5.5.9/bacpac/SH?t=password^&p=%%00
)
endlocal