diff --git a/UI/window-basic-auto-config.cpp b/UI/window-basic-auto-config.cpp index cdf576e0f..511b889a3 100644 --- a/UI/window-basic-auto-config.cpp +++ b/UI/window-basic-auto-config.cpp @@ -644,6 +644,8 @@ void AutoConfigStreamPage::UpdateKeyLink() } else if (serviceName.startsWith("OPENREC.tv")) { streamKeyLink = "https://www.openrec.tv/login?keep_login=true&url=https://www.openrec.tv/dashboard/live?from=obs"; + } else if (serviceName == "Brime Live") { + streamKeyLink = "https://brimelive.com/obs-stream-key-link"; } if (QString(streamKeyLink).isNull()) { diff --git a/UI/window-basic-settings-stream.cpp b/UI/window-basic-settings-stream.cpp index fa7b528ca..f66ba260d 100644 --- a/UI/window-basic-settings-stream.cpp +++ b/UI/window-basic-settings-stream.cpp @@ -296,6 +296,8 @@ void OBSBasicSettings::UpdateKeyLink() } else if (serviceName.startsWith("OPENREC.tv")) { streamKeyLink = "https://www.openrec.tv/login?keep_login=true&url=https://www.openrec.tv/dashboard/live?from=obs"; + } else if (serviceName == "Brime Live") { + streamKeyLink = "https://brimelive.com/obs-stream-key-link"; } if (QString(streamKeyLink).isNull()) { diff --git a/plugins/rtmp-services/data/package.json b/plugins/rtmp-services/data/package.json index 51593666f..08b6b1d75 100644 --- a/plugins/rtmp-services/data/package.json +++ b/plugins/rtmp-services/data/package.json @@ -1,10 +1,10 @@ { "url": "https://obsproject.com/obs2_update/rtmp-services", - "version": 175, + "version": 176, "files": [ { "name": "services.json", - "version": 175 + "version": 176 } ] } diff --git a/plugins/rtmp-services/data/services.json b/plugins/rtmp-services/data/services.json index 759dc8e95..3e1ca7f5f 100644 --- a/plugins/rtmp-services/data/services.json +++ b/plugins/rtmp-services/data/services.json @@ -2135,6 +2135,64 @@ "max video bitrate": 7000, "max audio bitrate": 128 } + }, + { + "name": "Brime Live", + "servers": [ + { + "name": "North America - Ashburn, VA", + "url": "rtmp://ingest-us-ashburn.brimelive.com/live" + }, + { + "name": "North America - San Jose, CA", + "url": "rtmp://ingest-us-sanjose.brimelive.com/live" + }, + { + "name": "North America - Atlanta, GA", + "url": "rtmp://ingest-us-atlanta.brimelive.com/live" + }, + { + "name": "North America - Dallas, TX", + "url": "rtmp://ingest-us-dallas.brimelive.com/live" + }, + { + "name": "North America - Chicago, IL", + "url": "rtmp://ingest-us-chicago.brimelive.com/live" + }, + { + "name": "Canada Southeast - Montreal", + "url": "rtmp://ingest-ca-montreal.brimelive.com/live" + }, + { + "name": "Latin America - Brazil East (Sao Paulo)", + "url": "rtmp://ingest-la-saopaulo.brimelive.com/live" + }, + { + "name": "Europe / EMEA - Germany (Frankfurt)", + "url": "rtmp://ingest-eu-frankfurt.brimelive.com/live" + }, + { + "name": "Europe / EMEA - UK South (London)", + "url": "rtmp://ingest-eu-london.brimelive.com/live" + }, + { + "name": "Europe / EMEA - Russia (Moscow)", + "url": "rtmp://ingest-eu-moscow.brimelive.com/live" + }, + { + "name": "APAC - Japan East (Tokyo)", + "url": "rtmp://ingest-apac-tokyo.brimelive.com/live" + }, + { + "name": "APAC - Australia East (Sydney)", + "url": "rtmp://ingest-apac-sydney.brimelive.com/live" + } + ], + "recommended": { + "max video bitrate": 20000, + "max audio bitrate": 320, + "x264opts": "scenecut=0" + } } ] }