Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hritikr/a9server
A9 WiFi Mini-Camera HTTP Streaming Server (DGOA)
https://github.com/hritikr/a9server
a9 golang streaming wificam
Last synced: 12 days ago
JSON representation
A9 WiFi Mini-Camera HTTP Streaming Server (DGOA)
- Host: GitHub
- URL: https://github.com/hritikr/a9server
- Owner: HritikR
- Created: 2024-11-02T06:25:33.000Z (12 days ago)
- Default Branch: main
- Last Pushed: 2024-11-02T06:52:40.000Z (12 days ago)
- Last Synced: 2024-11-02T07:25:14.762Z (12 days ago)
- Topics: a9, golang, streaming, wificam
- Language: Go
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A9 WiFi Mini-Camera HTTP Streaming Server
This project is a lightweight HTTP streaming server for the A9 WiFi mini-camera, implemented in Go. Based on [JavaScript implementation in the A9_PPPP repository](https://github.com/datenstau/A9_PPPP.git), this Go version provides a minimal, dependency-free solution to stream MJPG video directly from the camera. With this project, there's no need to set up additional libraries, making it ideal for straightforward streaming setups.
## Overview
This implementation retrieves only the MJPG video stream from the A9 camera.
- A single binary, ideal for systems where lightweight and efficient code is essential.## Limitations
This Go implementation is limited to MJPG video streaming. If you require additional camera commands (e.g., controlling the camera or retrieving audio), consider using the [original A9_PPPP repository](https://github.com/datenstau/A9_PPPP.git) or extending this project.## Getting Started
### Requirements
- Go 1.16 or higher
- A9 WiFi mini-camera connected to the same network### Installation
1. Clone the repository:
```bash
git clone https://github.com/HritikR/A9Server
cd A9Server
```2. Build the server:
```bash
go build -o a9server main.go
```3. Run the server:
```bash
./a9server
```
## Usage
Once the server is running, you can connect to the MJPG stream `http://localhost:8080/stream` to view the live video feed from the A9 WiFi mini-camera.## Contributing
Contributions are welcome! If you’d like to add features or improve functionality, please submit a pull request.## Special Thanks
- [A9_PPPP](https://github.com/datenstau/A9_PPPP.git) for the JavaScript implementation.
- [Home Assistant Community](https://community.home-assistant.io/t/popular-a9-mini-wi-fi-camera-the-ha-challenge/230108)