Gateway to send streams to Galène videoconference server.
Project description
Galène streaming gateway
Gateway to send streams such as RTMP or SRT to Galène videoconference server. It is based on Gstreamer and implements the Galène protocol. This project is not production ready, and you might experience frame drops and crashes.
Note To stream from OBS Studio to Galène, you should rather prefer WebRTC-HTTP ingestion protocol (WHIP). OBS Studio introduced WHIP output in version 30.0. Galène supports WHIP on its master branch since July 2023, it will be part of Galène 0.8.
Installation
Real-time video conversion requires resources. If many users are going to use this gateway simultaneously, you should scale your machine resources accordingly.
Installation works on Ubuntu 20.10 and Debian Bullseye or any later version.
For Windows users, we recommend to use Windows Subsystem for Linux.
Dependencies
# On Debian/Ubuntu-based distributions
sudo apt install python3-gi python3-gi-cairo python3-websockets gir1.2-gst-plugins-bad-1.0 gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav gstreamer1.0-nice
# On ArchLinux-based distributions
sudo pacman -S python-setuptools python-pip python-websockets python-gobject gobject-introspection gst-python gst-plugins-base gst-plugins-bad gst-plugins-ugly gst-libav
# On NixOS
nix-shell -p gobject-introspection -p gst_all_1.gst-libav -p gst_all_1.gst-plugins-bad -p gst_all_1.gst-plugins-base -p gst_all_1.gst-plugins-good -p gst_all_1.gst-plugins-ugly -p libnice -p python3 -p python3Packages.gst-python -p python3Packages.pygobject3 -p python3Packages.websockets
Then you should be able to either run ./galene-stream.py in this repository,
or install it using pip.
Configuration for UDP streaming
Launch the gateway using:
galene-stream --input "udp://127.0.0.1:8888" --output "https://galene.example.org/group/public/" --username bot
Then you can stream to udp://127.0.0.1:8888 with no stream key.
Configuration for RTMP streaming
+--------------------+ +----------+ +-------------+ +------+
|Streaming software | RTMP |NGINX RTMP| RTMP |Galène Stream| WebRTC |Galène|
|(such as OBS-Studio)+------> Server <------+ Gateway +--------> |
+--------------------+ +----------+ +-------------+ +------+
You need a NGINX RTMP server, you may remix the provided nginx.conf. You can launch NGINX as user using:
nginx -c nginx.conf -p $PWD
You may launch the gateway after the NGINX server using:
galene-stream --input "rtmp://127.0.0.1:1935/live/test" --output "https://galene.example.org/group/public/" --username bot
Then you can stream to rtmp://127.0.0.1:1935/live with stream key test.
Configuration for SRT streaming
SRT support is still experimental in some Linux distributions. It has been reported to work on ArchLinux (on 2021/03/30).
When using OBS, you need to have FFMpeg compiled with SRT support.
To check if SRT is available, run ffmpeg -protocols | grep srt.
On Windows and MacOS, OBS comes with his own FFMpeg that will work.
Launch the gateway using:
galene-stream --input "srt://127.0.0.1:9710?mode=listener" --output "https://galene.example.org/group/public/" --username bot
Then you can stream to srt://127.0.0.1:9710 with no stream key.
More information on OBS Wiki, Streaming With SRT Or RIST Protocols.
Configuration for file streaming
For debugging purposes you can directly stream a file,
galene-stream --input "file://source.webm" --output "https://galene.example.org/group/public/" --username bot
Contributing
We welcome contributions that stays in the scope of this project.
Please format your code using black and test it using pytest.
Collecting statistics about GStreamer WebRTC element
During a stream, you can send !webrtc in the chat to get some statistics
about the connectivity between the gateway and Galène.
Debugging GStreamer pipeline
Logging pipeline statistics
You may use these environment variables,
GST_DEBUG="GST_TRACER:7" GST_TRACERS="latency;stats;rusage" GST_DEBUG_FILE=trace.log
Then you may inspect logs using gst-stats-1.0 trace.log.
Plotting pipeline graph
It is possible to plot pipeline status just before exiting the script by setting
GST_DEBUG_DUMP_DOT_DIR environnement variable to a directory.
For example, export GST_DEBUG_DUMP_DOT_DIR=..
Then you can use GraphViz to generate an image from the dot file:
dot -Tpng pipeline.dot > pipeline.png.
License
This project is compliant with version 3.2 of the REUSE Specification.
This gateway is developed by former members of Crans and Aurore network organizations to build a self-hosted free and open-source streaming server based on Galène. We believe in open source software.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file galene_stream-0.2.0.tar.gz.
File metadata
- Download URL: galene_stream-0.2.0.tar.gz
- Upload date:
- Size: 394.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea059f26c3dbb34838ee3488598f150c5db36086c208b433802a452c2504cda6
|
|
| MD5 |
ec2af9b55cf12740b3c6ef64bc8dcc1d
|
|
| BLAKE2b-256 |
2f79ec5872e4c2df3633ae6d24ec7766a366d35f839a60d3c91b029d3b4ebb72
|
File details
Details for the file galene_stream-0.2.0-py2.py3-none-any.whl.
File metadata
- Download URL: galene_stream-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 16.2 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.12.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
597739aa64a88d088a7042988c7d3466f8210bddb88e7e5a799647451abd056c
|
|
| MD5 |
b4b66eb0f8da4f85f4e5a2de4afae5b3
|
|
| BLAKE2b-256 |
4798ad7d01aacacf8e5af8d5b56cd5269060befcef54f179ef05d7b49016a638
|