368 shaares
The Restreamer is a complete streaming server solution for self-hosting. It has a visually appealing user interface and no ongoing license costs. Upload your live stream to YouTube, Twitch, Facebook, Vimeo, or other streaming solutions like Wowza. Receive video data from OBS and publish it with the RTMP and SRT server. - datarhei/restreamer
I had to write this to get past the ffmpeg
detection problems:
#!/bin/sh
if [ "$1" = "-version" ] || [ "$1" = "-V" ] || [ "$1" = "-v" ]; then
echo "ffmpeg version 7.1.1 Copyright (c) ..."
else
exec /usr/bin/ffmpeg "$@"
fi
It's β¨ beautiful β¨!