aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-05-21 23:00:42 +0200
committerdec05eba <dec05eba@protonmail.com>2025-05-21 23:00:42 +0200
commit043b6df255b46accd776e6ac8563c2ff3b9647f2 (patch)
tree2fd209a79791546bbc003d1b8b08ddfad3059cc1
parent831f583f89c087a5ea1bec4b717e06496217f260 (diff)
Add livestream url for rumble
-rw-r--r--src/Overlay.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Overlay.cpp b/src/Overlay.cpp
index 80dcaad..aaf22a6 100644
--- a/src/Overlay.cpp
+++ b/src/Overlay.cpp
@@ -2579,6 +2579,9 @@ namespace gsr {
} else if(config.streaming_config.streaming_service == "youtube") {
url += "rtmp://a.rtmp.youtube.com/live2/";
url += config.streaming_config.youtube.stream_key;
+ } else if(config.streaming_config.streaming_service == "rumble") {
+ url += "rtmp://rtmp.rumble.com/live/";
+ url += config.streaming_config.rumble.stream_key;
} else if(config.streaming_config.streaming_service == "custom") {
url = config.streaming_config.custom.url;
if(url.size() >= 7 && strncmp(url.c_str(), "rtmp://", 7) == 0)