https://github.com/technomancers/gomjpegserver
MJPEG Server for Raspberry Pi cameras
https://github.com/technomancers/gomjpegserver
camera golang golang-package mjpeg raspberrypi
Last synced: about 2 months ago
JSON representation
MJPEG Server for Raspberry Pi cameras
- Host: GitHub
- URL: https://github.com/technomancers/gomjpegserver
- Owner: technomancers
- License: gpl-3.0
- Created: 2017-05-03T05:16:43.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-20T11:32:36.000Z (over 7 years ago)
- Last Synced: 2025-03-25T07:41:41.869Z (2 months ago)
- Topics: camera, golang, golang-package, mjpeg, raspberrypi
- Language: Go
- Homepage:
- Size: 25.4 KB
- Stars: 9
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Go Mjpeg Server
This package houses two different packages related to eachother.
1. `mjpeg` package is used to create an HTTP server for a stream of JPEG images (may or may not be in MJPEG format).
2. `piCamera` is a nice interface for `raspivid` command. It does everything from stdOut so no files are created.## Installation
```sh
go get github.com/technomancers/goMjpegServer
````main.go` is an example project that consumes both mjpeg and piCamera (please use [technomancers/piCamera](https://github.com/technomancers/piCamera) instead of the one in this package as I am deprecating the one in this repository).
When you run the application `goMjpegServer` (if you have `$GOPATH/bin` in your path it should be installed) it will start a mjpeg server on [http://localhost:8080](http://localhost:8080). Navigate to it and you should see that your camera is now capturing and displaying to webpage.