Download Video from your BlackVue on your PC or NAS

TraxxMaxx

New Member
Joined
Mar 31, 2015
Messages
16
Reaction score
5
Country
Belgium
Dash Cam
BackVue DR-600GW
Hello,

If you want to download your videos from your BlackVue on your pc or Nas, you can use this command when you are connected to your Blackvue

fileOnDevice=`curl http://192.168.8.1/blackvue_vod.cgi | sed 's/^n://' | sed 's/,s:1000000//' | tr -d '\r'`

for file in $fileOnDevice

do

wget -nd http://192.168.8.1$file

done

I use this with my NAS Synology, now I test this with the custom firmware from alexsoll

Thanks alexsoll for your Custom Firmware
 
Last edited by a moderator:
Hello,

I made a .sh file and put it as a timed task in my synology.

My problem is, the synology has a very slowly donload compared to windows with wget. I dont know very much about linux comments, but is there a kind of speedlimit in the command for the NAS?

#!/bin/bash
cd "$(dirname "$0")"
for file in `curl http://192.168.1.121/blackvue_vod.cgi | sed 's/^n://' | sed 's/F.mp4//' | sed 's/R.mp4//' | sed 's/,s:1000000//' | sed $'s/\r//'`; do wget -c http://192.168.1.121$file\F.mp4; wget -c http://192.168.1.121$file\R.mp4; wget -nc http://192.168.1.121$file\F.thm; wget -nc http://192.168.1.121$file\R.thm; wget -nc http://192.168.1.121$file.gps; wget -nc http://192.168.1.121$file.3gf; done
 
Hi

The speed is due to your wireless connection.

In my case, the speed is about 300 kbps or 150 kbps
 
Back
Top