Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gnd/hydra
OpenGL Sony Action Cam HDR-AS30 viewer and recorder
https://github.com/gnd/hydra
c camera hdr-as30v hx50 libcurl sony sony-action-cam
Last synced: 24 days ago
JSON representation
OpenGL Sony Action Cam HDR-AS30 viewer and recorder
- Host: GitHub
- URL: https://github.com/gnd/hydra
- Owner: gnd
- Created: 2018-01-31T10:13:36.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-14T16:12:08.000Z (almost 5 years ago)
- Last Synced: 2024-10-01T02:41:21.076Z (about 1 month ago)
- Topics: c, camera, hdr-as30v, hx50, libcurl, sony, sony-action-cam
- Language: C
- Size: 35.2 KB
- Stars: 8
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hydra
Linux-based OpenGL Sony Action Cam HDR-AS30 viewer and recorder (tested on HX50 too)# usage
Hydra uses libcurl to connect and download image data over Wi-Fi from a Sony Action Cam.
Just connect to the Action Cam over Wi-Fi and launch Hydra.```
usage:
hydra [options]Cam options:
--cam [type] provide cam type (currently only hx50 and as30 (default))
--cam-link [link] overrides the cam type and sets the remote location directly
use without http://, eg. --cam-link 10.0.0.1:60152Display options:
--primary-fs create a fullscreen window on primary monitor
--primary-res [WidthxHeight] create a width x height window on primary monitor (default: 800x600)
--secondary-fs create a fullscreen window on secondary monitor
--secondary-res [WidthxHeight] create a width x height window on secondary monitorSaving options:
--save-dir [dir] directory where to save frames
--save-file [filename] filename to save frames in the form: name_%0Nd.jpeg
%0Nd stands for number of digits, eg. my_%06d.jpeg
will be saved as my_000001.jpeg, my_000002.jpeg, etc..
```
You can use these commands during runtime:```
spacebar freeze frame (broken)
c sony on/off
s save jpeg on/off
t FPS printing
q, ctrl+c, esc, exit
```# installation
```
apt-get install libjpeg-dev libcurl4-openssl-dev libglfw3-dev libxi-dev
git clone https://github.com/gnd/hydra.git
cd hydra
make
```###
Inspired by https://github.com/erik-smit/sony-camera-api/blob/master/liveView.py