Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/densinh/vivitarminicamexport
Small repository to explain / automatically export photos from a Vivitar Mini Camera
https://github.com/densinh/vivitarminicamexport
Last synced: 8 days ago
JSON representation
Small repository to explain / automatically export photos from a Vivitar Mini Camera
- Host: GitHub
- URL: https://github.com/densinh/vivitarminicamexport
- Owner: DenSinH
- Created: 2023-08-10T13:04:30.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-08-11T09:14:00.000Z (over 1 year ago)
- Last Synced: 2024-11-16T23:13:05.491Z (2 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# VivitarMiniCamExport
Small repository to explain / automatically export photos from a Vivitar Mini CameraWe found this mini camera that can go on your keychain, a Vivitar Mini Camera, but we had no way of extracting the photos. Online tutorials only showed people using
Windows XP machines to install the official software, but after some digging through online forums, I found a way to do it in an "easier" way, just on Windows 10.The steps to do it are in windows.md, and I also wrote a script to do it automatically for me, in windows.py.
I might write a script to do it on Mac and Linux, but it is a lot easier on those platforms.
## Extracting Photos on Mac
To do this, install `brew`, and then use brew to install `gphoto2`. Then you can simply run the commmand
```
sudo gphoto2 --auto-detect -P
```
to extract all photos to the current folder. They are extracted as `.ppm` files, so you could use (part of) the Windows script
(using Pillow) to convert the images to png (or whatever format you like).To delete the photos off the camera, run the command
```
sudo gphoto2 --auto-detect -D
```## Extracting Photos on Linux
This should effectively be the same as on Mac, just install `gphoto2` and run the commands described above.