https://github.com/deathbymisadventure/sierraaxe
RTMP Relay Streaming Server, with HTTP service
https://github.com/deathbymisadventure/sierraaxe
container dash hls hls-live-streaming hls-stream nginx rtmp rtmp-server rtmp-stream
Last synced: 20 days ago
JSON representation
RTMP Relay Streaming Server, with HTTP service
- Host: GitHub
- URL: https://github.com/deathbymisadventure/sierraaxe
- Owner: DeathByMisadventure
- License: mit
- Created: 2022-03-06T20:59:16.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2024-12-30T04:50:05.000Z (4 months ago)
- Last Synced: 2024-12-30T05:30:37.248Z (4 months ago)
- Topics: container, dash, hls, hls-live-streaming, hls-stream, nginx, rtmp, rtmp-server, rtmp-stream
- Language: XSLT
- Homepage:
- Size: 44.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sierra-Axe Video Streaming Server
A Dockerfile installing NGINX, nginx-rtmp-module and FFmpeg from source with
default settings for HLS and DASH live streaming. Built on Alpine Linux.The server allows video streaming sources to be streamed over RTMP, which then are converted to mpeg streams viewable over an HTTP webpage or as a raw RTMP source. Multiple stream sources are available, so you may have a large amount of input streams, that are consumed by a "video producer" using software such as [OBS Studio.](https://obsproject.com/) The producer may then edit the streams, feeding back a master stream viewable by end users.
```mermaid
graph LR;
1(Stream Source 1) -- RTMP --> Sierra-Axe;
2(Stream Source 2) -- RTMP --> Sierra-Axe;
producer(OBS Producer) -- RTMP --> Sierra-Axe;
Sierra-Axe -- RTMP --> producer(OBS Producer);
subgraph Sierra-Axe Container;
Sierra-Axe;
end
Sierra-Axe -- HLS/DASH --> viewer(HTTP Viewer);
```### Server
* Build and run container from source:
```cmd
docker build --no-cache -t sierra-axe .
docker run -it -p 1935:1935 -p 8080:80 --rm sierra-axe
```### OBS Configuration
* Stream Type: `Custom Streaming Server`
* URL: `rtmp://sierra-axe-server:1935/stream`
* Stream Key: $STREAM_NAME <- unique stream key for that particular instance* or with ffmpeg the destination will be:
```text
rtmp://sierra-axe-server:1935/stream/$STREAM_NAME
```### Watch Stream
* The RTMP streams can be watched directly with the source:
```text
rtmp://sierra-axe-server:1935/stream/$STREAM_NAME
```* Browser based viewing using HLS:
```text
http://sierra-axe-server/view/$STREAM_NAME
```* or the alternate viewer using DASH:
```text
http://sierra-axe-server/dash/$STREAM_NAME
```