0

我在 Windows Vista PC 上使用批处理文件来控制和下载来自 GoPro Hero 3+ Black 相机的媒体。感谢https://github.com/KonradIT/goprowifihack的 WiFi hacking 独创性,您可以通过curlURL 告诉相机开始和停止录制、更改模式等。然后我可以使用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
4

1 回答 1

0

问题似乎是wget在后台运行同时记录更多媒体会使相机过载并导致其关闭 Wifi。

删除-b参数wget以避免wget在后台运行可解决此问题。

于 2016-03-19T05:18:08.997 回答