https://github.com/xevoinc/gst-sensors
GStreamer plugins for streaming sensor data, such as GPS
https://github.com/xevoinc/gst-sensors
Last synced: 2 months ago
JSON representation
GStreamer plugins for streaming sensor data, such as GPS
- Host: GitHub
- URL: https://github.com/xevoinc/gst-sensors
- Owner: XevoInc
- License: gpl-2.0
- Created: 2018-01-17T22:46:39.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-30T18:12:58.000Z (over 6 years ago)
- Last Synced: 2025-02-01T12:29:10.607Z (4 months ago)
- Language: C
- Homepage:
- Size: 23.4 KB
- Stars: 2
- Watchers: 8
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# gst-sensors
gst-sensors contains GStreamer plugins designed to stream sensor data, such as
GPS or accelerometer data. It is designed with the goal of enabling sensor data
as a first-class citizen in GStreamer, with buffer types, encoders, muxers, and
other support.## Build
### Prerequisites
- meson: `pip3 install meson`
- ninja: `pip3 install ninja`
- gst-plugins-base/gstreamer: `apt install gstreamer1.0-plugins-base` or similar
on other distros## Instructions
### First time builds
```
mkdir build
cd build
meson ..
ninja
```### Rebuilding
To rebuild at any time, you just need to rerun the last `ninja` command:
```
ninja
```You can run this command from any directory you like. For instance, to rebuild
from the top level directory, use the ninja `-C` option to point ninja at the
build directory:```
ninja -C build
```