From OBS to multiple rtmp destinations #3531
Replies: 1 comment
-
This is possible by launching multiple FFmpeg instances inside Example: paths:
mypath:
source: rtmp://127.0.0.1:5000/test
runOnReadyRestart: true
runOnReady: sh -c "ffmpeg -i rtsp://localhost:8554/$MTX_PATH c copy -f flv rtmp://dest1 & ffmpeg -i rtsp://localhost:8554/$MTX_PATH -c copy -f flv rtmp://dest2 & ffmpeg -i rtsp://localhost:8554/$MTX_PATH -c copy -f flv rtmp://dest3 & wait" |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Question
Hi
I am looking for a solution to stream to multiple rtmp destinations.
I have looked at the documentation but it is not clear if it is possible.
I have tried to use ffmpeg but it is very unstable and keeps crashing.
Here is an example of what I'm trying to achieve:
ffmpeg -listen 1 -i rtmp://127.0.0.1:5000/test -c copy -f flv $ODYSEE -c copy -f flv $RUMBLE -c copy -f flv $ENTROPY
Beta Was this translation helpful? Give feedback.
All reactions