https://github.com/philrw/blackvue-download
Download video files from BlackVue camera
https://github.com/philrw/blackvue-download
blackvue
Last synced: about 1 month ago
JSON representation
Download video files from BlackVue camera
- Host: GitHub
- URL: https://github.com/philrw/blackvue-download
- Owner: PhilRW
- Created: 2018-02-28T01:05:07.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-07T17:06:00.000Z (over 1 year ago)
- Last Synced: 2025-03-26T18:43:43.267Z (about 2 months ago)
- Topics: blackvue
- Language: Python
- Size: 13.7 KB
- Stars: 6
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# blackvue-download
Download video files from BlackVue camera## How to use
Run the python script and pass it two arguments: the destination directory and the IP/hostname of the camera. The camera will need to be cloud connected for the script to work.It will run continuously and will wait 5 minutes between trying to reach the host.
```bash
python ./blackvue-download.py /home/me/BlackVue 192.168.0.123
```The script will place the files in subfolders based on year, month, and day (YYYY/MM/DD). It will not copy files that it has already copied.
You may need to install the requirements first:
```bash
pip install -r requirements.txt
```## Docker
There is a Docker image available. Simply map a volume where you want it stored and pass the hostname/IP of the camera:
`docker run -v /home/me/BlackVue:/data philrw/blackvue-download 192.168.0.123`
If you don't map the [data volume](https://docs.docker.com/storage/), it will be anonymous.