Cyberia hosts an instance of owncast at https://stream.cyberia.club/ for members to stream video games, meetings, and other real-time video content. This is similar to twitch.tv, but we own & operate it from the ground up.
Cyberia hosts an instance of owncast at https://stream.cyberia.club/ for members to stream video games, meetings, and other real-time video content. This is similar to twitch.tv, but we own & operate it from the ground up.
In order to stream, you will need to request the streaming key from a member of cyberia.
OBS (Open Broadcaster Software) is the most common and easiest way to stream from your PC. You can download it from https://obsproject.com/ or download the source code from github: https://github.com/obsproject/obs-studio
When you set up OBS for the first time, you will be prompted to configure a streaming destination.
Select Custom...
and then enter the url rtmp://stream.cyberia.club
plus the stream key.
To stream a file from start to finish with ffmpeg:
ffmpeg -re -i video.mp4 -vcodec libx264 -vprofile baseline -g 30 -acodec aac -strict -2 -f flv rtmp://stream.cyberia.club/<stream-key>
To start at a particular minute of the file, add the following flag right after ffmpeg
:
# start 20 minutes in
-ss 00:20:00
commit 1c29c021af0a00ad03b20d6215bd39a566d3eafb Author: j3s <j3s@c3f.net> Date: 2021-02-22T17:20:53-06:00 Update docs according to last congress