From 64164a1523e616bb1168a3f61f3738b3a9ac3058 Mon Sep 17 00:00:00 2001 From: clone1018 Date: Mon, 11 Jan 2021 20:22:46 -0500 Subject: [PATCH] rtmp-services: Add Glimesh service --- UI/window-basic-auto-config.cpp | 2 + UI/window-basic-settings-stream.cpp | 2 + plugins/rtmp-services/data/package.json | 4 +- plugins/rtmp-services/data/services.json | 49 ++++++++++++++++++++++++ 4 files changed, 55 insertions(+), 2 deletions(-) diff --git a/UI/window-basic-auto-config.cpp b/UI/window-basic-auto-config.cpp index 03cf065b7..2b84961aa 100644 --- a/UI/window-basic-auto-config.cpp +++ b/UI/window-basic-auto-config.cpp @@ -629,6 +629,8 @@ void AutoConfigStreamPage::UpdateKeyLink() streamKeyLink = "https://www.app.youstreamer.com/stream/"; } else if (serviceName == "Trovo") { streamKeyLink = "https://studio.trovo.live/mychannel/stream"; + } else if (serviceName == "Glimesh") { + streamKeyLink = "https://glimesh.tv/users/settings/stream"; } if (QString(streamKeyLink).isNull()) { diff --git a/UI/window-basic-settings-stream.cpp b/UI/window-basic-settings-stream.cpp index 2189ed5a8..e36aa24b2 100644 --- a/UI/window-basic-settings-stream.cpp +++ b/UI/window-basic-settings-stream.cpp @@ -288,6 +288,8 @@ void OBSBasicSettings::UpdateKeyLink() streamKeyLink = "https://app.youstreamer.com/stream/"; } else if (serviceName == "Trovo") { streamKeyLink = "https://studio.trovo.live/mychannel/stream"; + } else if (serviceName == "Glimesh") { + streamKeyLink = "https://glimesh.tv/users/settings/stream"; } if (QString(streamKeyLink).isNull()) { diff --git a/plugins/rtmp-services/data/package.json b/plugins/rtmp-services/data/package.json index b8c2b9dde..11bc51808 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": 164, + "version": 165, "files": [ { "name": "services.json", - "version": 164 + "version": 165 } ] } diff --git a/plugins/rtmp-services/data/services.json b/plugins/rtmp-services/data/services.json index dadf71091..778402f62 100644 --- a/plugins/rtmp-services/data/services.json +++ b/plugins/rtmp-services/data/services.json @@ -1878,6 +1878,55 @@ "max audio bitrate": 192, "x264opts": "tune=zerolatency scenecut=0" } + }, + { + "name": "Glimesh", + "servers": [ + { + "name": "North America - Chicago, United States", + "url": "ingest.kord.live.glimesh.tv" + }, + { + "name": "North America - New York, United States", + "url": "ingest.kjfk.live.glimesh.tv" + }, + { + "name": "North America - San Francisco, United States", + "url": "ingest.ksfo.live.glimesh.tv" + }, + { + "name": "North America - Toronto, Canada", + "url": "ingest.cyyz.live.glimesh.tv" + }, + { + "name": "Europe - Amsterdam, Netherlands", + "url": "ingest.eham.live.glimesh.tv" + }, + { + "name": "Europe - Frankfurt, Germany", + "url": "ingest.eddf.live.glimesh.tv" + }, + { + "name": "Europe - London, United Kingdom", + "url": "ingest.egll.live.glimesh.tv" + }, + { + "name": "Asia - Bangalore, India", + "url": "ingest.vobl.live.glimesh.tv" + }, + { + "name": "Asia - Singapore", + "url": "ingest.wsss.live.glimesh.tv" + } + ], + "recommended": { + "keyint": 2, + "output": "ftl_output", + "max audio bitrate": 160, + "max video bitrate": 6000, + "bframes": 0, + "x264opts": "scenecut=0" + } } ] } -- GitLab