Browse Source

rtmp-services: Add OPENREC.tv service

poccariswet 4 years ago
parent
commit
77e4a09f62

+ 3 - 0
UI/window-basic-auto-config.cpp

@@ -631,6 +631,9 @@ void AutoConfigStreamPage::UpdateKeyLink()
 		streamKeyLink = "https://studio.trovo.live/mychannel/stream";
 	} else if (serviceName == "Glimesh") {
 		streamKeyLink = "https://glimesh.tv/users/settings/stream";
+	} else if (serviceName.startsWith("OPENREC.tv")) {
+		streamKeyLink =
+			"https://www.openrec.tv/login?keep_login=true&url=https://www.openrec.tv/dashboard/live?from=obs";
 	}
 
 	if (QString(streamKeyLink).isNull()) {

+ 3 - 0
UI/window-basic-settings-stream.cpp

@@ -290,6 +290,9 @@ void OBSBasicSettings::UpdateKeyLink()
 		streamKeyLink = "https://studio.trovo.live/mychannel/stream";
 	} else if (serviceName == "Glimesh") {
 		streamKeyLink = "https://glimesh.tv/users/settings/stream";
+	} else if (serviceName.startsWith("OPENREC.tv")) {
+		streamKeyLink =
+			"https://www.openrec.tv/login?keep_login=true&url=https://www.openrec.tv/dashboard/live?from=obs";
 	}
 
 	if (QString(streamKeyLink).isNull()) {

+ 14 - 0
plugins/rtmp-services/data/services.json

@@ -1983,6 +1983,20 @@
                 "bframes": 0,
                 "x264opts": "scenecut=0"
             }
+        },
+        {
+            "name": "OPENREC.tv - Premium member (プレミアム会員)",
+            "servers": [
+                {
+                    "name": "Default",
+                    "url": "rtmp://a.station.openrec.tv:1935/live1"
+                }
+            ],
+            "recommended": {
+                "keyint": 2,
+                "max video bitrate": 5000,
+                "max audio bitrate": 160
+            }
         }
     ]
 }