services.json 124 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591
  1. {
  2. "$schema": "schema/service-schema-v5.json",
  3. "format_version": 5,
  4. "services": [
  5. {
  6. "name": "Twitch",
  7. "common": true,
  8. "stream_key_link": "https://dashboard.twitch.tv/settings/stream",
  9. "multitrack_video_configuration_url": "https://ingest.twitch.tv/api/v3/GetClientConfiguration",
  10. "multitrack_video_name": "Enhanced Broadcasting",
  11. "multitrack_video_learn_more_link": "https://help.twitch.tv/s/article/multiple-encodes",
  12. "servers": [
  13. {
  14. "name": "Asia: Hong Kong",
  15. "url": "rtmp://live-hkg.twitch.tv/app"
  16. },
  17. {
  18. "name": "Asia: Seoul, South Korea",
  19. "url": "rtmp://live-sel.twitch.tv/app"
  20. },
  21. {
  22. "name": "Asia: Singapore",
  23. "url": "rtmp://live-sin.twitch.tv/app"
  24. },
  25. {
  26. "name": "Asia: Taipei, Taiwan",
  27. "url": "rtmp://live-tpe.twitch.tv/app"
  28. },
  29. {
  30. "name": "Asia: Tokyo, Japan",
  31. "url": "rtmp://live-tyo.twitch.tv/app"
  32. },
  33. {
  34. "name": "Australia: Sydney",
  35. "url": "rtmp://live-syd.twitch.tv/app"
  36. },
  37. {
  38. "name": "EU: Amsterdam, NL",
  39. "url": "rtmp://live-ams.twitch.tv/app"
  40. },
  41. {
  42. "name": "EU: Berlin, DE",
  43. "url": "rtmp://live-ber.twitch.tv/app"
  44. },
  45. {
  46. "name": "Europe: Copenhagen, DK",
  47. "url": "rtmp://live-cph.twitch.tv/app"
  48. },
  49. {
  50. "name": "EU: Frankfurt, DE",
  51. "url": "rtmp://live-fra.twitch.tv/app"
  52. },
  53. {
  54. "name": "EU: Helsinki, FI",
  55. "url": "rtmp://live-hel.twitch.tv/app"
  56. },
  57. {
  58. "name": "EU: Lisbon, Portugal",
  59. "url": "rtmp://live-lis.twitch.tv/app"
  60. },
  61. {
  62. "name": "EU: London, UK",
  63. "url": "rtmp://live-lhr.twitch.tv/app"
  64. },
  65. {
  66. "name": "EU: Madrid, Spain",
  67. "url": "rtmp://live-mad.twitch.tv/app"
  68. },
  69. {
  70. "name": "EU: Marseille, FR",
  71. "url": "rtmp://live-mrs.twitch.tv/app"
  72. },
  73. {
  74. "name": "EU: Milan, Italy",
  75. "url": "rtmp://live-mil.twitch.tv/app"
  76. },
  77. {
  78. "name": "EU: Norway, Oslo",
  79. "url": "rtmp://live-osl.twitch.tv/app"
  80. },
  81. {
  82. "name": "EU: Paris, FR",
  83. "url": "rtmp://live-cdg.twitch.tv/app"
  84. },
  85. {
  86. "name": "EU: Prague, CZ",
  87. "url": "rtmp://live-prg.twitch.tv/app"
  88. },
  89. {
  90. "name": "EU: Stockholm, SE",
  91. "url": "rtmp://live-arn.twitch.tv/app"
  92. },
  93. {
  94. "name": "EU: Vienna, Austria",
  95. "url": "rtmp://live-vie.twitch.tv/app"
  96. },
  97. {
  98. "name": "EU: Warsaw, Poland",
  99. "url": "rtmp://live-waw.twitch.tv/app"
  100. },
  101. {
  102. "name": "NA: Mexico City",
  103. "url": "rtmp://live-qro.twitch.tv/app"
  104. },
  105. {
  106. "name": "NA: Quebec, Canada",
  107. "url": "rtmp://live-ymq.twitch.tv/app"
  108. },
  109. {
  110. "name": "NA: Toronto, Canada",
  111. "url": "rtmp://live-yto.twitch.tv/app"
  112. },
  113. {
  114. "name": "South America: Argentina",
  115. "url": "rtmp://live-eze.twitch.tv/app"
  116. },
  117. {
  118. "name": "South America: Chile",
  119. "url": "rtmp://live-scl.twitch.tv/app"
  120. },
  121. {
  122. "name": "South America: Lima, Peru",
  123. "url": "rtmp://live-lim.twitch.tv/app"
  124. },
  125. {
  126. "name": "South America: Medellin, Colombia",
  127. "url": "rtmp://live-mde.twitch.tv/app"
  128. },
  129. {
  130. "name": "South America: Rio de Janeiro, Brazil",
  131. "url": "rtmp://live-rio.twitch.tv/app"
  132. },
  133. {
  134. "name": "South America: Sao Paulo, Brazil",
  135. "url": "rtmp://live-sao.twitch.tv/app"
  136. },
  137. {
  138. "name": "US Central: Dallas, TX",
  139. "url": "rtmp://live-dfw.twitch.tv/app"
  140. },
  141. {
  142. "name": "US Central: Denver, CO",
  143. "url": "rtmp://live-den.twitch.tv/app"
  144. },
  145. {
  146. "name": "US Central: Houston, TX",
  147. "url": "rtmp://live-hou.twitch.tv/app"
  148. },
  149. {
  150. "name": "US Central: Salt Lake City, UT",
  151. "url": "rtmp://live-slc.twitch.tv/app"
  152. },
  153. {
  154. "name": "US East: Ashburn, VA",
  155. "url": "rtmp://live-iad.twitch.tv/app"
  156. },
  157. {
  158. "name": "US East: Atlanta, GA",
  159. "url": "rtmp://live-atl.twitch.tv/app"
  160. },
  161. {
  162. "name": "US East: Chicago",
  163. "url": "rtmp://live-ord.twitch.tv/app"
  164. },
  165. {
  166. "name": "US East: Miami, FL",
  167. "url": "rtmp://live-mia.twitch.tv/app"
  168. },
  169. {
  170. "name": "US East: New York, NY",
  171. "url": "rtmp://live-jfk.twitch.tv/app"
  172. },
  173. {
  174. "name": "US West: Los Angeles, CA",
  175. "url": "rtmp://live-lax.twitch.tv/app"
  176. },
  177. {
  178. "name": "US West: Phoenix, AZ",
  179. "url": "rtmp://live-phx.twitch.tv/app"
  180. },
  181. {
  182. "name": "US West: Portland, Oregon",
  183. "url": "rtmp://live-pdx.twitch.tv/app"
  184. },
  185. {
  186. "name": "US West: San Francisco, CA",
  187. "url": "rtmp://live-sfo.twitch.tv/app"
  188. },
  189. {
  190. "name": "US West: San Jose, CA",
  191. "url": "rtmp://live-sjc.twitch.tv/app"
  192. },
  193. {
  194. "name": "US West: Seattle, WA",
  195. "url": "rtmp://live-sea.twitch.tv/app"
  196. }
  197. ],
  198. "recommended": {
  199. "keyint": 2,
  200. "max video bitrate": 6000,
  201. "max audio bitrate": 320,
  202. "x264opts": "scenecut=0"
  203. },
  204. "supported video codecs": [
  205. "h264"
  206. ]
  207. },
  208. {
  209. "name": "YouTube - HLS",
  210. "common": false,
  211. "more_info_link": "https://developers.google.com/youtube/v3/live/guides/ingestion-protocol-comparison",
  212. "stream_key_link": "https://www.youtube.com/live_dashboard",
  213. "protocol": "HLS",
  214. "supported video codecs": [
  215. "h264",
  216. "hevc"
  217. ],
  218. "servers": [
  219. {
  220. "name": "Primary YouTube ingest server",
  221. "url": "https://a.upload.youtube.com/http_upload_hls?cid={stream_key}&copy=0&file=out.m3u8"
  222. },
  223. {
  224. "name": "Backup YouTube ingest server",
  225. "url": "https://b.upload.youtube.com/http_upload_hls?cid={stream_key}&copy=1&file=out.m3u8"
  226. }
  227. ],
  228. "recommended": {
  229. "keyint": 2,
  230. "output": "ffmpeg_hls_muxer",
  231. "max video bitrate": 51000,
  232. "max audio bitrate": 160
  233. }
  234. },
  235. {
  236. "name": "YouTube - RTMPS",
  237. "common": true,
  238. "stream_key_link": "https://www.youtube.com/live_dashboard",
  239. "alt_names": [
  240. "YouTube / YouTube Gaming",
  241. "YouTube - RTMP",
  242. "YouTube - RTMPS (Beta)"
  243. ],
  244. "supported video codecs": [
  245. "h264",
  246. "hevc",
  247. "av1"
  248. ],
  249. "servers": [
  250. {
  251. "name": "Primary YouTube ingest server",
  252. "url": "rtmps://a.rtmps.youtube.com:443/live2"
  253. },
  254. {
  255. "name": "Backup YouTube ingest server",
  256. "url": "rtmps://b.rtmps.youtube.com:443/live2?backup=1"
  257. },
  258. {
  259. "name": "Primary YouTube ingest server (legacy RTMP)",
  260. "url": "rtmp://a.rtmp.youtube.com/live2"
  261. },
  262. {
  263. "name": "Backup YouTube ingest server (legacy RTMP)",
  264. "url": "rtmp://b.rtmp.youtube.com/live2?backup=1"
  265. }
  266. ],
  267. "recommended": {
  268. "keyint": 2,
  269. "max video bitrate": 51000,
  270. "max audio bitrate": 160
  271. }
  272. },
  273. {
  274. "name": "Loola.tv",
  275. "common": false,
  276. "servers": [
  277. {
  278. "name": "US East: Virginia",
  279. "url": "rtmp://rtmp.loola.tv/push"
  280. },
  281. {
  282. "name": "EU Central: Germany",
  283. "url": "rtmp://rtmp-eu.loola.tv/push"
  284. },
  285. {
  286. "name": "South America: Brazil",
  287. "url": "rtmp://rtmp-sa.loola.tv/push"
  288. },
  289. {
  290. "name": "Asia/Pacific: Singapore",
  291. "url": "rtmp://rtmp-sg.loola.tv/push"
  292. },
  293. {
  294. "name": "Middle East: Bahrain",
  295. "url": "rtmp://rtmp-me.loola.tv/push"
  296. }
  297. ],
  298. "recommended": {
  299. "keyint": 2,
  300. "profile": "high",
  301. "max video bitrate": 2500,
  302. "max audio bitrate": 160,
  303. "bframes": 2,
  304. "x264opts": "scenecut=0"
  305. },
  306. "supported video codecs": [
  307. "h264"
  308. ]
  309. },
  310. {
  311. "name": "Lovecast",
  312. "servers": [
  313. {
  314. "name": "Default",
  315. "url": "rtmp://live-a.lovecastapp.com:5222/app"
  316. }
  317. ],
  318. "recommended": {
  319. "keyint": 2,
  320. "profile": "main",
  321. "max video bitrate": 8000,
  322. "max audio bitrate": 192,
  323. "supported resolutions": [
  324. "1920x1080",
  325. "1280x720"
  326. ],
  327. "max fps": 30
  328. },
  329. "supported video codecs": [
  330. "h264"
  331. ]
  332. },
  333. {
  334. "name": "Luzento.com - RTMP",
  335. "stream_key_link": "https://cms.luzento.com/dashboard/stream-key?from=OBS",
  336. "servers": [
  337. {
  338. "name": "Primary",
  339. "url": "rtmp://ingest.luzento.com/live"
  340. },
  341. {
  342. "name": "Primary (Test)",
  343. "url": "rtmp://ingest.luzento.com/test"
  344. }
  345. ],
  346. "recommended": {
  347. "keyint": 2,
  348. "max video bitrate": 6000,
  349. "max audio bitrate": 256,
  350. "bframes": 2,
  351. "x264opts": "scenecut=0"
  352. },
  353. "supported video codecs": [
  354. "h264"
  355. ]
  356. },
  357. {
  358. "name": "Web.TV",
  359. "servers": [
  360. {
  361. "name": "Primary",
  362. "url": "rtmp://live3.origins.web.tv/liveext"
  363. }
  364. ],
  365. "recommended": {
  366. "keyint": 2,
  367. "profile": "main",
  368. "max video bitrate": 3500,
  369. "max audio bitrate": 160
  370. },
  371. "supported video codecs": [
  372. "h264"
  373. ]
  374. },
  375. {
  376. "name": "GoodGame.ru",
  377. "servers": [
  378. {
  379. "name": "Моscow",
  380. "url": "rtmp://msk.goodgame.ru:1940/live"
  381. }
  382. ],
  383. "supported video codecs": [
  384. "h264"
  385. ]
  386. },
  387. {
  388. "name": "Vaughn Live / iNSTAGIB",
  389. "servers": [
  390. {
  391. "name": "US: Vint Hill, VA",
  392. "url": "rtmp://live-iad.vaughnsoft.net/live"
  393. },
  394. {
  395. "name": "US: Vint Hill, VA #2",
  396. "url": "rtmp://live-iad2.vaughnsoft.net/live"
  397. },
  398. {
  399. "name": "US: Dallas, TX",
  400. "url": "rtmp://live-dfw.vaughnsoft.net/live"
  401. },
  402. {
  403. "name": "US: Denver, CO",
  404. "url": "rtmp://live-den.vaughnsoft.net/live"
  405. },
  406. {
  407. "name": "US: New York, NY",
  408. "url": "rtmp://live-nyc.vaughnsoft.net/live"
  409. },
  410. {
  411. "name": "US: Miami, FL",
  412. "url": "rtmp://live-mia.vaughnsoft.net/live"
  413. },
  414. {
  415. "name": "US: Seattle, WA",
  416. "url": "rtmp://live-sea.vaughnsoft.net/live"
  417. },
  418. {
  419. "name": "CA: Toronto",
  420. "url": "rtmp://live-tor.vaughnsoft.net/live"
  421. },
  422. {
  423. "name": "EU: Amsterdam, NL",
  424. "url": "rtmp://live-ams.vaughnsoft.net/live"
  425. },
  426. {
  427. "name": "EU: London, UK",
  428. "url": "rtmp://live-lhr.vaughnsoft.net/live"
  429. },
  430. {
  431. "name": "EU: Paris, FR",
  432. "url": "rtmp://live-lhr.vaughnsoft.net/live"
  433. },
  434. {
  435. "name": "Tokyo, JP",
  436. "url": "rtmp://live-lhr.vaughnsoft.net/live"
  437. }
  438. ],
  439. "recommended": {
  440. "keyint": 2,
  441. "max video bitrate": 15000,
  442. "max audio bitrate": 320
  443. },
  444. "supported video codecs": [
  445. "h264"
  446. ]
  447. },
  448. {
  449. "name": "Breakers.TV",
  450. "servers": [
  451. {
  452. "name": "US: Vint Hill, VA",
  453. "url": "rtmp://live-iad.vaughnsoft.net/live"
  454. },
  455. {
  456. "name": "US: Vint Hill, VA #2",
  457. "url": "rtmp://live-iad2.vaughnsoft.net/live"
  458. },
  459. {
  460. "name": "US: Dallas, TX",
  461. "url": "rtmp://live-dfw.vaughnsoft.net/live"
  462. },
  463. {
  464. "name": "US: Denver, CO",
  465. "url": "rtmp://live-den.vaughnsoft.net/live"
  466. },
  467. {
  468. "name": "US: New York, NY",
  469. "url": "rtmp://live-nyc.vaughnsoft.net/live"
  470. },
  471. {
  472. "name": "US: Miami, FL",
  473. "url": "rtmp://live-mia.vaughnsoft.net/live"
  474. },
  475. {
  476. "name": "US: Seattle, WA",
  477. "url": "rtmp://live-sea.vaughnsoft.net/live"
  478. },
  479. {
  480. "name": "CA: Toronto",
  481. "url": "rtmp://live-tor.vaughnsoft.net/live"
  482. },
  483. {
  484. "name": "EU: Amsterdam, NL",
  485. "url": "rtmp://live-ams.vaughnsoft.net/live"
  486. },
  487. {
  488. "name": "EU: London, UK",
  489. "url": "rtmp://live-lhr.vaughnsoft.net/live"
  490. },
  491. {
  492. "name": "EU: Paris, FR",
  493. "url": "rtmp://live-lhr.vaughnsoft.net/live"
  494. },
  495. {
  496. "name": "Tokyo, JP",
  497. "url": "rtmp://live-lhr.vaughnsoft.net/live"
  498. }
  499. ],
  500. "recommended": {
  501. "keyint": 2,
  502. "max video bitrate": 15000,
  503. "max audio bitrate": 320
  504. },
  505. "supported video codecs": [
  506. "h264"
  507. ]
  508. },
  509. {
  510. "name": "Facebook Live",
  511. "common": true,
  512. "stream_key_link": "https://www.facebook.com/live/producer?ref=OBS",
  513. "servers": [
  514. {
  515. "name": "Default",
  516. "url": "rtmps://rtmp-api.facebook.com:443/rtmp/"
  517. }
  518. ],
  519. "recommended": {
  520. "keyint": 2,
  521. "profile": "main",
  522. "supported resolutions": [
  523. "1920x1080",
  524. "1280x720",
  525. "852x480",
  526. "640x360"
  527. ],
  528. "bitrate matrix": [
  529. {
  530. "res": "640x360",
  531. "fps": 30,
  532. "max bitrate": 1000
  533. },
  534. {
  535. "res": "640x360",
  536. "fps": 60,
  537. "max bitrate": 1500
  538. },
  539. {
  540. "res": "852x480",
  541. "fps": 30,
  542. "max bitrate": 2000
  543. },
  544. {
  545. "res": "852x480",
  546. "fps": 60,
  547. "max bitrate": 3000
  548. },
  549. {
  550. "res": "1280x720",
  551. "fps": 30,
  552. "max bitrate": 4000
  553. },
  554. {
  555. "res": "1280x720",
  556. "fps": 60,
  557. "max bitrate": 6000
  558. },
  559. {
  560. "res": "1920x1080",
  561. "fps": 30,
  562. "max bitrate": 6000
  563. },
  564. {
  565. "res": "1920x1080",
  566. "fps": 60,
  567. "max bitrate": 9000
  568. }
  569. ],
  570. "max fps": 60,
  571. "max video bitrate": 9000,
  572. "max audio bitrate": 128
  573. },
  574. "supported video codecs": [
  575. "h264"
  576. ]
  577. },
  578. {
  579. "name": "Restream.io",
  580. "alt_names": [
  581. "Restream.io - RTMP",
  582. "Restream.io - FTL"
  583. ],
  584. "common": true,
  585. "stream_key_link": "https://restream.io/settings/streaming-setup?from=OBS",
  586. "servers": [
  587. {
  588. "name": "Autodetect",
  589. "url": "rtmp://live.restream.io/live"
  590. },
  591. {
  592. "name": "EU-West (London, GB)",
  593. "url": "rtmp://london.restream.io/live"
  594. },
  595. {
  596. "name": "EU-West (Amsterdam, NL)",
  597. "url": "rtmp://amsterdam.restream.io/live"
  598. },
  599. {
  600. "name": "EU-West (Paris, FR)",
  601. "url": "rtmp://paris.restream.io/live"
  602. },
  603. {
  604. "name": "EU-Central (Frankfurt, DE)",
  605. "url": "rtmp://frankfurt.restream.io/live"
  606. },
  607. {
  608. "name": "EU-South (Madrid, Spain)",
  609. "url": "rtmp://madrid.restream.io/live"
  610. },
  611. {
  612. "name": "Turkey (Istanbul)",
  613. "url": "rtmp://istanbul.restream.io/live"
  614. },
  615. {
  616. "name": "US-West (Seattle, WA)",
  617. "url": "rtmp://seattle.restream.io/live"
  618. },
  619. {
  620. "name": "US-West (San Jose, CA)",
  621. "url": "rtmp://sanjose.restream.io/live"
  622. },
  623. {
  624. "name": "US-Central (Dallas, TX)",
  625. "url": "rtmp://dallas.restream.io/live"
  626. },
  627. {
  628. "name": "US-East (Chicago, IL)",
  629. "url": "rtmp://chicago.restream.io/live"
  630. },
  631. {
  632. "name": "US-East (New York, NY)",
  633. "url": "rtmp://newyork.restream.io/live"
  634. },
  635. {
  636. "name": "US-East (Washington, DC)",
  637. "url": "rtmp://washington.restream.io/live"
  638. },
  639. {
  640. "name": "NA-East (Toronto, Canada)",
  641. "url": "rtmp://toronto.restream.io/live"
  642. },
  643. {
  644. "name": "SA (Saint Paul, Brazil)",
  645. "url": "rtmp://saopaulo.restream.io/live"
  646. },
  647. {
  648. "name": "India (Bangalore)",
  649. "url": "rtmp://bangalore.restream.io/live"
  650. },
  651. {
  652. "name": "Asia (Hong Kong)",
  653. "url": "rtmp://hongkong.restream.io/live"
  654. },
  655. {
  656. "name": "Asia (Singapore)",
  657. "url": "rtmp://singapore.restream.io/live"
  658. },
  659. {
  660. "name": "Asia (Seoul, South Korea)",
  661. "url": "rtmp://seoul.restream.io/live"
  662. },
  663. {
  664. "name": "Asia (Tokyo, Japan)",
  665. "url": "rtmp://tokyo.restream.io/live"
  666. },
  667. {
  668. "name": "Australia (Sydney)",
  669. "url": "rtmp://sydney.restream.io/live"
  670. }
  671. ],
  672. "recommended": {
  673. "keyint": 2
  674. },
  675. "supported video codecs": [
  676. "h264"
  677. ]
  678. },
  679. {
  680. "name": "Castr.io",
  681. "servers": [
  682. {
  683. "name": "US-East (Chicago, IL)",
  684. "url": "rtmp://cg.castr.io/static"
  685. },
  686. {
  687. "name": "US-East (New York, NY)",
  688. "url": "rtmp://ny.castr.io/static"
  689. },
  690. {
  691. "name": "US-East (Miami, FL)",
  692. "url": "rtmp://mi.castr.io/static"
  693. },
  694. {
  695. "name": "US-West (Seattle, WA)",
  696. "url": "rtmp://se.castr.io/static"
  697. },
  698. {
  699. "name": "US-West (Los Angeles, CA)",
  700. "url": "rtmp://la.castr.io/static"
  701. },
  702. {
  703. "name": "US-Central (Dallas, TX)",
  704. "url": "rtmp://da.castr.io/static"
  705. },
  706. {
  707. "name": "NA-East (Toronto, CA)",
  708. "url": "rtmp://qc.castr.io/static"
  709. },
  710. {
  711. "name": "Mexico",
  712. "url": "rtmp://mexico.castr.io/static"
  713. },
  714. {
  715. "name": "Sao Paulo, BR",
  716. "url": "rtmp://br.castr.io/static"
  717. },
  718. {
  719. "name": "Colombia",
  720. "url": "rtmp://bogota.castr.io/static"
  721. },
  722. {
  723. "name": "Santiago, Chile",
  724. "url": "rtmp://santiago.castr.io/static"
  725. },
  726. {
  727. "name": "Istanbul, TR",
  728. "url": "rtmp://istanbul.castr.io/static"
  729. },
  730. {
  731. "name": "Tel Aviv, IL",
  732. "url": "rtmp://telaviv.castr.io/static"
  733. },
  734. {
  735. "name": "EU-West (London, UK)",
  736. "url": "rtmp://uk.castr.io/static"
  737. },
  738. {
  739. "name": "EU-West (Paris, FR)",
  740. "url": "rtmp://paris.castr.io/static"
  741. },
  742. {
  743. "name": "EU-West (Madrid, ES)",
  744. "url": "rtmp://madrid.castr.io/static"
  745. },
  746. {
  747. "name": "EU-Central (Frankfurt, DE)",
  748. "url": "rtmp://fr.castr.io/static"
  749. },
  750. {
  751. "name": "EU-Central (Milan, IT)",
  752. "url": "rtmp://milan.castr.io/static"
  753. },
  754. {
  755. "name": "EU-North (Stockholm, SE)",
  756. "url": "rtmp://stockholm.castr.io/static"
  757. },
  758. {
  759. "name": "EU-North (Copenhagen, DK)",
  760. "url": "rtmp://copenhagen.castr.io/static"
  761. },
  762. {
  763. "name": "Russia (Moscow)",
  764. "url": "rtmp://ru.castr.io/static"
  765. },
  766. {
  767. "name": "Asia (Singapore)",
  768. "url": "rtmp://sg.castr.io/static"
  769. },
  770. {
  771. "name": "Asia (Hong Kong, HK)",
  772. "url": "rtmp://hongkong.castr.io/static"
  773. },
  774. {
  775. "name": "Asia (India)",
  776. "url": "rtmp://in.castr.io/static"
  777. },
  778. {
  779. "name": "Australia (Sydney)",
  780. "url": "rtmp://au.castr.io/static"
  781. },
  782. {
  783. "name": "UAE (Dubai)",
  784. "url": "rtmp://dubai.castr.io/static"
  785. },
  786. {
  787. "name": "Africa (Johannesburg, ZA)",
  788. "url": "rtmp://southafrica.castr.io/static"
  789. },
  790. {
  791. "name": "Africa (Lagos, NG)",
  792. "url": "rtmp://lagos.castr.io/static"
  793. },
  794. {
  795. "name": "US Central",
  796. "url": "rtmp://us-central.castr.io/static"
  797. },
  798. {
  799. "name": "US West",
  800. "url": "rtmp://us-west.castr.io/static"
  801. },
  802. {
  803. "name": "US East",
  804. "url": "rtmp://us-east.castr.io/static"
  805. },
  806. {
  807. "name": "US South",
  808. "url": "rtmp://us-south.castr.io/static"
  809. },
  810. {
  811. "name": "South America",
  812. "url": "rtmp://south-am.castr.io/static"
  813. },
  814. {
  815. "name": "EU Central",
  816. "url": "rtmp://eu-central.castr.io/static"
  817. },
  818. {
  819. "name": "Singapore",
  820. "url": "rtmp://sg-central.castr.io/static"
  821. }
  822. ],
  823. "recommended": {
  824. "keyint": 2
  825. },
  826. "supported video codecs": [
  827. "h264"
  828. ]
  829. },
  830. {
  831. "name": "Boomstream",
  832. "servers": [
  833. {
  834. "name": "Default",
  835. "url": "rtmp://live.boomstream.com/live"
  836. }
  837. ],
  838. "supported video codecs": [
  839. "h264"
  840. ]
  841. },
  842. {
  843. "name": "Meridix Live Sports Platform",
  844. "servers": [
  845. {
  846. "name": "Primary",
  847. "url": "rtmp://publish.meridix.com/live"
  848. }
  849. ],
  850. "recommended": {
  851. "max video bitrate": 3500
  852. },
  853. "supported video codecs": [
  854. "h264"
  855. ]
  856. },
  857. {
  858. "name": "SOOP Korea",
  859. "alt_names": [
  860. "AfreecaTV",
  861. "아프리카TV",
  862. "Afreeca.TV"
  863. ],
  864. "servers": [
  865. {
  866. "name": "Asia : Korea",
  867. "url": "rtmp://stream.sooplive.co.kr/app/"
  868. },
  869. {
  870. "name": "North America : US East",
  871. "url": "rtmp://rtmp-esu.sooplive.co.kr/app/"
  872. },
  873. {
  874. "name": "North America : US West",
  875. "url": "rtmp://rtmp-wsu.sooplive.co.kr/app/"
  876. },
  877. {
  878. "name": "South America : Brazil",
  879. "url": "rtmp://rtmp-brz.sooplive.co.kr/app/"
  880. },
  881. {
  882. "name": "Europe : UK",
  883. "url": "rtmp://rtmp-uk.sooplive.co.kr/app/"
  884. },
  885. {
  886. "name": "Asia : Singapore",
  887. "url": "rtmp://rtmp-sgp.sooplive.co.kr/app/"
  888. }
  889. ],
  890. "recommended": {
  891. "keyint": 2,
  892. "profile": "main",
  893. "max video bitrate": 8000,
  894. "max audio bitrate": 192
  895. },
  896. "supported video codecs": [
  897. "h264"
  898. ]
  899. },
  900. {
  901. "name": "CAM4",
  902. "servers": [
  903. {
  904. "name": "CAM4",
  905. "url": "rtmp://origin.cam4.com/cam4-origin-live"
  906. }
  907. ],
  908. "recommended": {
  909. "keyint": 1,
  910. "profile": "baseline",
  911. "max video bitrate": 3000,
  912. "max audio bitrate": 128
  913. },
  914. "supported video codecs": [
  915. "h264"
  916. ]
  917. },
  918. {
  919. "name": "ePlay",
  920. "servers": [
  921. {
  922. "name": "ePlay Primary",
  923. "url": "rtmp://live.eplay.link/origin"
  924. }
  925. ],
  926. "recommended": {
  927. "keyint": 2,
  928. "profile": "main",
  929. "max video bitrate": 7500,
  930. "max audio bitrate": 192
  931. },
  932. "supported video codecs": [
  933. "h264"
  934. ]
  935. },
  936. {
  937. "name": "Picarto",
  938. "servers": [
  939. {
  940. "name": "Autoselect closest server",
  941. "url": "rtmp://live.us.picarto.tv/golive"
  942. },
  943. {
  944. "name": "Los Angeles, USA",
  945. "url": "rtmp://live.us-losangeles.picarto.tv/golive"
  946. },
  947. {
  948. "name": "Dallas, USA",
  949. "url": "rtmp://live.us-dallas.picarto.tv/golive"
  950. },
  951. {
  952. "name": "Miami, USA",
  953. "url": "rtmp://live.us-miami.picarto.tv/golive"
  954. },
  955. {
  956. "name": "New York, USA",
  957. "url": "rtmp://live.us-newyork.picarto.tv/golive"
  958. },
  959. {
  960. "name": "Europe",
  961. "url": "rtmp://live.eu-west1.picarto.tv/golive"
  962. }
  963. ],
  964. "recommended": {
  965. "keyint": 2,
  966. "profile": "main",
  967. "max video bitrate": 3500
  968. },
  969. "supported video codecs": [
  970. "h264"
  971. ]
  972. },
  973. {
  974. "name": "Uscreen",
  975. "servers": [
  976. {
  977. "name": "Default",
  978. "url": "rtmp://global-live.uscreen.app:5222/app"
  979. }
  980. ],
  981. "recommended": {
  982. "keyint": 2,
  983. "max video bitrate": 8000,
  984. "max audio bitrate": 192
  985. },
  986. "supported video codecs": [
  987. "h264"
  988. ]
  989. },
  990. {
  991. "name": "Stripchat",
  992. "servers": [
  993. {
  994. "name": "Auto",
  995. "url": "rtmp://live.doppiocdn.com/ext"
  996. }
  997. ],
  998. "recommended": {
  999. "keyint": 2,
  1000. "profile": "main",
  1001. "bframes": 0,
  1002. "max video bitrate": 6000,
  1003. "max audio bitrate": 128,
  1004. "x264opts": "tune=zerolatency"
  1005. },
  1006. "supported video codecs": [
  1007. "h264"
  1008. ]
  1009. },
  1010. {
  1011. "name": "CamSoda",
  1012. "servers": [
  1013. {
  1014. "name": "North America",
  1015. "url": "rtmp://obs-ingest-na.livemediahost.com/cam_obs"
  1016. },
  1017. {
  1018. "name": "South America",
  1019. "url": "rtmp://obs-ingest-sa.livemediahost.com/cam_obs"
  1020. },
  1021. {
  1022. "name": "Asia",
  1023. "url": "rtmp://obs-ingest-as.livemediahost.com/cam_obs"
  1024. },
  1025. {
  1026. "name": "Europe",
  1027. "url": "rtmp://obs-ingest-eu.livemediahost.com/cam_obs"
  1028. },
  1029. {
  1030. "name": "Oceania",
  1031. "url": "rtmp://obs-ingest-oc.livemediahost.com/cam_obs"
  1032. }
  1033. ],
  1034. "recommended": {
  1035. "supported resolutions": [
  1036. "1920x1080",
  1037. "1280x720",
  1038. "852x480",
  1039. "480x360"
  1040. ],
  1041. "max fps": 30,
  1042. "max video bitrate": 6000,
  1043. "max audio bitrate": 160,
  1044. "x264opts": "tune=zerolatency"
  1045. },
  1046. "supported video codecs": [
  1047. "h264"
  1048. ]
  1049. },
  1050. {
  1051. "name": "Chaturbate",
  1052. "stream_key_link": "https://chaturbate.com/b/?useExternalSoftware=true",
  1053. "more_info_link": "https://support.chaturbate.com/hc/en-us/articles/360037971952-How-do-I-set-up-OBS",
  1054. "servers": [
  1055. {
  1056. "name": "Global Main Fastest - Recommended",
  1057. "url": "rtmp://global.live.mmcdn.com/live-origin"
  1058. },
  1059. {
  1060. "name": "Global Backup",
  1061. "url": "rtmp://global-backup.live.mmcdn.com/live-origin"
  1062. },
  1063. {
  1064. "name": "Asia: Mumbai, India",
  1065. "url": "rtmp://bom.live.mmcdn.com/live-origin"
  1066. },
  1067. {
  1068. "name": "Asia: Singapore",
  1069. "url": "rtmp://sin.live.mmcdn.com/live-origin"
  1070. },
  1071. {
  1072. "name": "Asia: Taiwan",
  1073. "url": "rtmp://tsa.live.mmcdn.com/live-origin"
  1074. },
  1075. {
  1076. "name": "Asia: Tokyo, Japan",
  1077. "url": "rtmp://nrt.live.mmcdn.com/live-origin"
  1078. },
  1079. {
  1080. "name": "Australasia: Sydney, Australia",
  1081. "url": "rtmp://syd.live.mmcdn.com/live-origin"
  1082. },
  1083. {
  1084. "name": "EU East: Sofia, Bulgaria",
  1085. "url": "rtmp://sof.live.mmcdn.com/live-origin"
  1086. },
  1087. {
  1088. "name": "EU East: Warsaw, Poland",
  1089. "url": "rtmp://waw.live.mmcdn.com/live-origin"
  1090. },
  1091. {
  1092. "name": "EU North: Helsinki, Finland",
  1093. "url": "rtmp://hel.live.mmcdn.com/live-origin"
  1094. },
  1095. {
  1096. "name": "EU West: Amsterdam, Netherlands",
  1097. "url": "rtmp://ams.live.mmcdn.com/live-origin"
  1098. },
  1099. {
  1100. "name": "EU West: Frankfurt, Germany",
  1101. "url": "rtmp://fra.live.mmcdn.com/live-origin"
  1102. },
  1103. {
  1104. "name": "EU West: Madrid, Spain",
  1105. "url": "rtmp://mad.live.mmcdn.com/live-origin"
  1106. },
  1107. {
  1108. "name": "EU West: Milan, Italy",
  1109. "url": "rtmp://mxp.live.mmcdn.com/live-origin"
  1110. },
  1111. {
  1112. "name": "EU West: Rotterdam, Netherlands",
  1113. "url": "rtmp://rtm.live.mmcdn.com/live-origin"
  1114. },
  1115. {
  1116. "name": "South America: Bogota, Colombia",
  1117. "url": "rtmp://bog.live.mmcdn.com/live-origin"
  1118. },
  1119. {
  1120. "name": "South America: Sao Paulo, Brazil",
  1121. "url": "rtmp://gru.live.mmcdn.com/live-origin"
  1122. },
  1123. {
  1124. "name": "US Central: Austin, TX",
  1125. "url": "rtmp://aus.live.mmcdn.com/live-origin"
  1126. },
  1127. {
  1128. "name": "US Central: Chicago, IL",
  1129. "url": "rtmp://chi.live.mmcdn.com/live-origin"
  1130. },
  1131. {
  1132. "name": "US East: Ashburn, VA",
  1133. "url": "rtmp://ash.live.mmcdn.com/live-origin"
  1134. },
  1135. {
  1136. "name": "US East: Atlanta, GA",
  1137. "url": "rtmp://atl.live.mmcdn.com/live-origin"
  1138. },
  1139. {
  1140. "name": "US East: Miami, FL",
  1141. "url": "rtmp://mia.live.mmcdn.com/live-origin"
  1142. },
  1143. {
  1144. "name": "US West: Los Angeles, CA",
  1145. "url": "rtmp://lax.live.mmcdn.com/live-origin"
  1146. },
  1147. {
  1148. "name": "US West: Phoenix, AZ",
  1149. "url": "rtmp://phx.live.mmcdn.com/live-origin"
  1150. },
  1151. {
  1152. "name": "US West: Salt Lake City, UT",
  1153. "url": "rtmp://slc.live.mmcdn.com/live-origin"
  1154. },
  1155. {
  1156. "name": "US West: Seattle, WA",
  1157. "url": "rtmp://sea.live.mmcdn.com/live-origin"
  1158. }
  1159. ],
  1160. "recommended": {
  1161. "keyint": 2,
  1162. "max video bitrate": 50000,
  1163. "max audio bitrate": 192,
  1164. "supported resolutions": [
  1165. "3840x2160",
  1166. "2560x1440",
  1167. "1920x1080",
  1168. "1280x720",
  1169. "960x540",
  1170. "852x480",
  1171. "640x360"
  1172. ],
  1173. "max fps": 60
  1174. },
  1175. "supported video codecs": [
  1176. "h264"
  1177. ]
  1178. },
  1179. {
  1180. "name": "WpStream",
  1181. "more_info_link": "https://wpstream.net/obs-more-info",
  1182. "stream_key_link": "https://wpstream.net/obs-get-stream-key",
  1183. "servers": [
  1184. {
  1185. "name": "Closest server - Automatic",
  1186. "url": "rtmp://ingest.wpstream.net/golive"
  1187. },
  1188. {
  1189. "name": "North America",
  1190. "url": "rtmp://ingest-na.wpstream.net/golive"
  1191. },
  1192. {
  1193. "name": "Europe",
  1194. "url": "rtmp://ingest-eu.wpstream.net/golive"
  1195. },
  1196. {
  1197. "name": "Asia",
  1198. "url": "rtmp://ingest-as.wpstream.net/golive"
  1199. },
  1200. {
  1201. "name": "South America",
  1202. "url": "rtmp://ingest-sa.wpstream.net/golive"
  1203. },
  1204. {
  1205. "name": "Australia & Oceania",
  1206. "url": "rtmp://ingest-au.wpstream.net/golive"
  1207. }
  1208. ],
  1209. "recommended": {
  1210. "keyint": 2,
  1211. "max audio bitrate": 160
  1212. },
  1213. "supported video codecs": [
  1214. "h264"
  1215. ]
  1216. },
  1217. {
  1218. "name": "Twitter",
  1219. "common": true,
  1220. "stream_key_link": "https://studio.twitter.com/producer/sources",
  1221. "alt_names": [
  1222. "Twitter / Periscope"
  1223. ],
  1224. "servers": [
  1225. {
  1226. "name": "US West: California",
  1227. "url": "rtmp://ca.pscp.tv:80/x"
  1228. },
  1229. {
  1230. "name": "US West: Oregon",
  1231. "url": "rtmp://or.pscp.tv:80/x"
  1232. },
  1233. {
  1234. "name": "US East: Virginia",
  1235. "url": "rtmp://va.pscp.tv:80/x"
  1236. },
  1237. {
  1238. "name": "South America: Brazil",
  1239. "url": "rtmp://br.pscp.tv:80/x"
  1240. },
  1241. {
  1242. "name": "EU West: France",
  1243. "url": "rtmp://fr.pscp.tv:80/x"
  1244. },
  1245. {
  1246. "name": "EU West: Ireland",
  1247. "url": "rtmp://ie.pscp.tv:80/x"
  1248. },
  1249. {
  1250. "name": "EU Central: Germany",
  1251. "url": "rtmp://de.pscp.tv:80/x"
  1252. },
  1253. {
  1254. "name": "Asia/Pacific: Australia",
  1255. "url": "rtmp://au.pscp.tv:80/x"
  1256. },
  1257. {
  1258. "name": "Asia/Pacific: India",
  1259. "url": "rtmp://in.pscp.tv:80/x"
  1260. },
  1261. {
  1262. "name": "Asia/Pacific: Japan",
  1263. "url": "rtmp://jp.pscp.tv:80/x"
  1264. },
  1265. {
  1266. "name": "Asia/Pacific: Korea",
  1267. "url": "rtmp://kr.pscp.tv:80/x"
  1268. },
  1269. {
  1270. "name": "Asia/Pacific: Singapore",
  1271. "url": "rtmp://sg.pscp.tv:80/x"
  1272. }
  1273. ],
  1274. "recommended": {
  1275. "keyint": 3,
  1276. "max video bitrate": 12000,
  1277. "max audio bitrate": 128,
  1278. "max fps": 60
  1279. },
  1280. "supported video codecs": [
  1281. "h264"
  1282. ]
  1283. },
  1284. {
  1285. "name": "Switchboard Live",
  1286. "alt_names": [
  1287. "Switchboard Live (Joicaster)"
  1288. ],
  1289. "servers": [
  1290. {
  1291. "name": "Default",
  1292. "url": "rtmps://live.sb.zone:443/live"
  1293. }
  1294. ],
  1295. "recommended": {
  1296. "keyint": 2,
  1297. "profile": "high"
  1298. },
  1299. "supported video codecs": [
  1300. "h264"
  1301. ]
  1302. },
  1303. {
  1304. "name": "Eventials",
  1305. "servers": [
  1306. {
  1307. "name": "Default",
  1308. "url": "rtmp://transmission.eventials.com/eventialsLiveOrigin"
  1309. }
  1310. ],
  1311. "recommended": {
  1312. "keyint": 1,
  1313. "profile": "baseline",
  1314. "max video bitrate": 900,
  1315. "max audio bitrate": 96
  1316. },
  1317. "supported video codecs": [
  1318. "h264"
  1319. ]
  1320. },
  1321. {
  1322. "name": "EventLive.pro",
  1323. "servers": [
  1324. {
  1325. "name": "Default",
  1326. "url": "rtmp://go.eventlive.pro/live"
  1327. }
  1328. ],
  1329. "recommended": {
  1330. "keyint": 2,
  1331. "max video bitrate": 3000,
  1332. "max audio bitrate": 192,
  1333. "supported resolutions": [
  1334. "1920x1080",
  1335. "1280x720"
  1336. ],
  1337. "max fps": 30
  1338. },
  1339. "supported video codecs": [
  1340. "h264"
  1341. ]
  1342. },
  1343. {
  1344. "name": "Lahzenegar - StreamG | لحظه‌نگار - استریمجی",
  1345. "servers": [
  1346. {
  1347. "name": "Primary",
  1348. "url": "rtmp://rtmp.lahzecdn.com/pro"
  1349. },
  1350. {
  1351. "name": "Iran",
  1352. "url": "rtmp://rtmp-iran.lahzecdn.com/pro"
  1353. }
  1354. ],
  1355. "recommended": {
  1356. "keyint": 2,
  1357. "profile": "main",
  1358. "max video bitrate": 4000,
  1359. "max audio bitrate": 192
  1360. },
  1361. "supported video codecs": [
  1362. "h264"
  1363. ]
  1364. },
  1365. {
  1366. "name": "MyLive",
  1367. "servers": [
  1368. {
  1369. "name": "Default",
  1370. "url": "rtmp://stream.mylive.in.th/live"
  1371. }
  1372. ],
  1373. "recommended": {
  1374. "keyint": 2,
  1375. "profile": "main",
  1376. "max video bitrate": 7000,
  1377. "max audio bitrate": 192
  1378. },
  1379. "supported video codecs": [
  1380. "h264"
  1381. ]
  1382. },
  1383. {
  1384. "name": "Trovo",
  1385. "alt_names": [
  1386. "Madcat"
  1387. ],
  1388. "stream_key_link": "https://studio.trovo.live/mychannel/stream",
  1389. "servers": [
  1390. {
  1391. "name": "Default",
  1392. "url": "rtmp://livepush.trovo.live/live/"
  1393. }
  1394. ],
  1395. "recommended": {
  1396. "keyint": 2,
  1397. "max video bitrate": 9000,
  1398. "max audio bitrate": 160,
  1399. "x264opts": "scenecut=0"
  1400. },
  1401. "supported video codecs": [
  1402. "h264"
  1403. ]
  1404. },
  1405. {
  1406. "name": "Mixcloud",
  1407. "servers": [
  1408. {
  1409. "name": "Default",
  1410. "url": "rtmp://rtmp.mixcloud.com/broadcast"
  1411. }
  1412. ],
  1413. "recommended": {
  1414. "keyint": 2,
  1415. "max video bitrate": 6000,
  1416. "max audio bitrate": 320,
  1417. "supported resolutions": [
  1418. "1280x720",
  1419. "852x480",
  1420. "480x360"
  1421. ],
  1422. "max fps": 30,
  1423. "x264opts": "scenecut=0"
  1424. },
  1425. "supported video codecs": [
  1426. "h264"
  1427. ]
  1428. },
  1429. {
  1430. "name": "SermonAudio Cloud",
  1431. "alt_names": [
  1432. "SermonAudio.com"
  1433. ],
  1434. "servers": [
  1435. {
  1436. "name": "Primary",
  1437. "url": "rtmp://webcast.sermonaudio.com/sa"
  1438. }
  1439. ],
  1440. "recommended": {
  1441. "max video bitrate": 2000,
  1442. "max audio bitrate": 128
  1443. },
  1444. "supported video codecs": [
  1445. "h264"
  1446. ]
  1447. },
  1448. {
  1449. "name": "Vimeo",
  1450. "servers": [
  1451. {
  1452. "name": "Default",
  1453. "url": "rtmp://rtmp.cloud.vimeo.com/live"
  1454. }
  1455. ],
  1456. "supported video codecs": [
  1457. "h264"
  1458. ]
  1459. },
  1460. {
  1461. "name": "Aparat",
  1462. "servers": [
  1463. {
  1464. "name": "Default",
  1465. "url": "rtmp://rtmp.cdn.asset.aparat.com:443/event"
  1466. }
  1467. ],
  1468. "recommended": {
  1469. "keyint": 2,
  1470. "max video bitrate": 6000,
  1471. "max audio bitrate": 320,
  1472. "x264opts": "scenecut=0"
  1473. },
  1474. "supported video codecs": [
  1475. "h264"
  1476. ]
  1477. },
  1478. {
  1479. "name": "KakaoTV",
  1480. "servers": [
  1481. {
  1482. "name": "Default",
  1483. "url": "rtmp://rtmp.play.kakao.com/kakaotv"
  1484. }
  1485. ],
  1486. "recommended": {
  1487. "max video bitrate": 8000,
  1488. "max audio bitrate": 192
  1489. },
  1490. "supported video codecs": [
  1491. "h264"
  1492. ]
  1493. },
  1494. {
  1495. "name": "Piczel.tv",
  1496. "servers": [
  1497. {
  1498. "name": "Default",
  1499. "url": "rtmp://piczel.tv:1935/live"
  1500. }
  1501. ],
  1502. "recommended": {
  1503. "keyint": 4,
  1504. "max video bitrate": 2500,
  1505. "max audio bitrate": 256,
  1506. "x264opts": "tune=zerolatency"
  1507. },
  1508. "supported video codecs": [
  1509. "h264"
  1510. ]
  1511. },
  1512. {
  1513. "name": "DLive",
  1514. "servers": [
  1515. {
  1516. "name": "Default",
  1517. "url": "rtmp://stream.dlive.tv/live"
  1518. }
  1519. ],
  1520. "recommended": {
  1521. "keyint": 2,
  1522. "max video bitrate": 6000,
  1523. "max audio bitrate": 160
  1524. },
  1525. "supported video codecs": [
  1526. "h264"
  1527. ]
  1528. },
  1529. {
  1530. "name": "Lightcast.com",
  1531. "servers": [
  1532. {
  1533. "name": "North America 1",
  1534. "url": "rtmp://ingest-na1.live.lightcast.com/in"
  1535. },
  1536. {
  1537. "name": "North America 2",
  1538. "url": "rtmp://ingest-na2.live.lightcast.com/in"
  1539. },
  1540. {
  1541. "name": "Europe",
  1542. "url": "rtmp://ingest-eu1.live.lightcast.com/in"
  1543. }
  1544. ],
  1545. "recommended": {
  1546. "keyint": 2,
  1547. "max video bitrate": 6000,
  1548. "max audio bitrate": 320,
  1549. "x264opts": "scenecut=0"
  1550. },
  1551. "supported video codecs": [
  1552. "h264"
  1553. ]
  1554. },
  1555. {
  1556. "name": "Bongacams",
  1557. "servers": [
  1558. {
  1559. "name": "Automatic / Default",
  1560. "url": "rtmp://auto.origin.gnsbc.com:1934/live"
  1561. },
  1562. {
  1563. "name": "Automatic / Backup",
  1564. "url": "rtmp://origin.bcvidorigin.com:1934/live"
  1565. },
  1566. {
  1567. "name": "Europe",
  1568. "url": "rtmp://z-eu.origin.gnsbc.com:1934/live"
  1569. },
  1570. {
  1571. "name": "North America",
  1572. "url": "rtmp://z-us.origin.gnsbc.com:1934/live"
  1573. }
  1574. ],
  1575. "recommended": {
  1576. "keyint": 2,
  1577. "max video bitrate": 6000,
  1578. "max audio bitrate": 192,
  1579. "bframes": 0,
  1580. "x264opts": "tune=zerolatency"
  1581. },
  1582. "supported video codecs": [
  1583. "h264"
  1584. ]
  1585. },
  1586. {
  1587. "name": "OnlyFans.com",
  1588. "stream_key_link": "https://onlyfans.com/my/settings/other",
  1589. "servers": [
  1590. {
  1591. "name": "CloudBeta",
  1592. "url": "rtmp://cloudbetastreaming.onlyfans.com/live"
  1593. }
  1594. ],
  1595. "recommended": {
  1596. "keyint": 2,
  1597. "profile": "main",
  1598. "max video bitrate": 2500,
  1599. "max audio bitrate": 192,
  1600. "bframes": 0,
  1601. "x264opts": "tune=zerolatency"
  1602. },
  1603. "supported video codecs": [
  1604. "h264"
  1605. ]
  1606. },
  1607. {
  1608. "name": "Steam",
  1609. "common": false,
  1610. "servers": [
  1611. {
  1612. "name": "Default",
  1613. "url": "rtmp://ingest-rtmp.broadcast.steamcontent.com/app"
  1614. }
  1615. ],
  1616. "recommended": {
  1617. "keyint": 2,
  1618. "profile": "high",
  1619. "max video bitrate": 7000,
  1620. "max audio bitrate": 128
  1621. },
  1622. "supported video codecs": [
  1623. "h264"
  1624. ]
  1625. },
  1626. {
  1627. "name": "Konduit.live",
  1628. "servers": [
  1629. {
  1630. "name": "Default",
  1631. "url": "rtmp://rtmp.konduit.live/live"
  1632. }
  1633. ],
  1634. "recommended": {
  1635. "keyint": 2,
  1636. "x264opts": "scenecut=0"
  1637. },
  1638. "supported video codecs": [
  1639. "h264"
  1640. ]
  1641. },
  1642. {
  1643. "name": "niconico (ニコニコ生放送)",
  1644. "more_info_link": "https://qa.nicovideo.jp/faq/show/701",
  1645. "alt_names": [
  1646. "niconico, premium member (ニコニコ生放送 プレミアム会員)",
  1647. "niconico, free member (ニコニコ生放送 一般会員)"
  1648. ],
  1649. "servers": [
  1650. {
  1651. "name": "Default",
  1652. "url": "rtmp://liveorigin.dlive.nicovideo.jp/live/input"
  1653. }
  1654. ],
  1655. "recommended": {
  1656. "keyint": 2,
  1657. "profile": "high",
  1658. "max audio bitrate": 192,
  1659. "max video bitrate": 5808,
  1660. "x264opts": "tune=zerolatency"
  1661. },
  1662. "supported video codecs": [
  1663. "h264"
  1664. ]
  1665. },
  1666. {
  1667. "name": "Nimo TV",
  1668. "servers": [
  1669. {
  1670. "name": "Global:2",
  1671. "url": "rtmp://txpush.rtmp.nimo.tv/live/"
  1672. },
  1673. {
  1674. "name": "Global:3",
  1675. "url": "rtmp://alpush.rtmp.nimo.tv/live/"
  1676. }
  1677. ],
  1678. "recommended": {
  1679. "keyint": 2,
  1680. "max video bitrate": 6000,
  1681. "max audio bitrate": 160
  1682. },
  1683. "supported video codecs": [
  1684. "h264"
  1685. ]
  1686. },
  1687. {
  1688. "name": "XLoveCam.com",
  1689. "servers": [
  1690. {
  1691. "name": "Europe(main)",
  1692. "url": "rtmp://nl.eu.stream.xlove.com/performer-origin"
  1693. },
  1694. {
  1695. "name": "Europe(Romania)",
  1696. "url": "rtmp://ro.eu.stream.xlove.com/performer-origin"
  1697. },
  1698. {
  1699. "name": "Europe(Russia)",
  1700. "url": "rtmp://ru.eu.stream.xlove.com/performer-origin"
  1701. },
  1702. {
  1703. "name": "North America(US East)",
  1704. "url": "rtmp://usec.na.stream.xlove.com/performer-origin"
  1705. },
  1706. {
  1707. "name": "North America(US West)",
  1708. "url": "rtmp://uswc.na.stream.xlove.com/performer-origin"
  1709. },
  1710. {
  1711. "name": "North America(Canada)",
  1712. "url": "rtmp://ca.na.stream.xlove.com/performer-origin"
  1713. },
  1714. {
  1715. "name": "South America",
  1716. "url": "rtmp://co.sa.stream.xlove.com/performer-origin"
  1717. },
  1718. {
  1719. "name": "Asia",
  1720. "url": "rtmp://sg.as.stream.xlove.com/performer-origin"
  1721. }
  1722. ],
  1723. "recommended": {
  1724. "x264opts": "scenecut=0"
  1725. },
  1726. "supported video codecs": [
  1727. "h264"
  1728. ]
  1729. },
  1730. {
  1731. "name": "AngelThump",
  1732. "servers": [
  1733. {
  1734. "name": "Auto",
  1735. "url": "rtmp://ingest.angelthump.com/live"
  1736. },
  1737. {
  1738. "name": "New York 3",
  1739. "url": "rtmp://nyc-ingest.angelthump.com:1935/live"
  1740. },
  1741. {
  1742. "name": "San Francisco 2",
  1743. "url": "rtmp://sfo-ingest.angelthump.com:1935/live"
  1744. },
  1745. {
  1746. "name": "Singapore 1",
  1747. "url": "rtmp://sgp-ingest.angelthump.com:1935/live"
  1748. },
  1749. {
  1750. "name": "London 1",
  1751. "url": "rtmp://lon-ingest.angelthump.com:1935/live"
  1752. },
  1753. {
  1754. "name": "Frankfurt 1",
  1755. "url": "rtmp://fra-ingest.angelthump.com:1935/live"
  1756. },
  1757. {
  1758. "name": "Toronto 1",
  1759. "url": "rtmp://tor-ingest.angelthump.com:1935/live"
  1760. },
  1761. {
  1762. "name": "Amsterdam 3",
  1763. "url": "rtmp://ams-ingest.angelthump.com:1935/live"
  1764. }
  1765. ],
  1766. "recommended": {
  1767. "keyint": 2,
  1768. "profile": "high",
  1769. "max video bitrate": 3500,
  1770. "max audio bitrate": 160
  1771. },
  1772. "supported video codecs": [
  1773. "h264"
  1774. ]
  1775. },
  1776. {
  1777. "name": "api.video",
  1778. "servers": [
  1779. {
  1780. "name": "Default",
  1781. "url": "rtmp://broadcast.api.video/s"
  1782. }
  1783. ],
  1784. "recommended": {
  1785. "keyint": 2,
  1786. "max video bitrate": 20000,
  1787. "max audio bitrate": 192
  1788. },
  1789. "supported video codecs": [
  1790. "h264"
  1791. ]
  1792. },
  1793. {
  1794. "name": "SHOWROOM",
  1795. "protocol": "RTMP",
  1796. "servers": [
  1797. {
  1798. "name": "Default",
  1799. "url": "https://www.showroom-live.com/api/obs/streaming_info?obs_key="
  1800. }
  1801. ],
  1802. "recommended": {
  1803. "keyint": 2,
  1804. "profile": "main",
  1805. "max video bitrate": 1500,
  1806. "max audio bitrate": 160,
  1807. "x264opts": "tune=zerolatency"
  1808. },
  1809. "supported video codecs": [
  1810. "h264"
  1811. ]
  1812. },
  1813. {
  1814. "name": "Mux",
  1815. "servers": [
  1816. {
  1817. "name": "Global (RTMPS)",
  1818. "url": "rtmps://global-live.mux.com:443/app"
  1819. },
  1820. {
  1821. "name": "Global (RTMP)",
  1822. "url": "rtmp://global-live.mux.com:5222/app"
  1823. }
  1824. ],
  1825. "recommended": {
  1826. "keyint": 2,
  1827. "max video bitrate": 5000,
  1828. "max audio bitrate": 160
  1829. },
  1830. "supported video codecs": [
  1831. "h264"
  1832. ]
  1833. },
  1834. {
  1835. "name": "Viloud",
  1836. "servers": [
  1837. {
  1838. "name": "Default",
  1839. "url": "rtmp://live.viloud.tv:5222/app"
  1840. }
  1841. ],
  1842. "recommended": {
  1843. "keyint": 2,
  1844. "max video bitrate": 5000,
  1845. "max audio bitrate": 160
  1846. },
  1847. "supported video codecs": [
  1848. "h264"
  1849. ]
  1850. },
  1851. {
  1852. "name": "MyFreeCams",
  1853. "servers": [
  1854. {
  1855. "name": "Automatic",
  1856. "url": "rtmp://publish.myfreecams.com/NxServer"
  1857. },
  1858. {
  1859. "name": "Australia",
  1860. "url": "rtmp://publish-syd.myfreecams.com/NxServer"
  1861. },
  1862. {
  1863. "name": "East Asia",
  1864. "url": "rtmp://publish-tyo.myfreecams.com/NxServer"
  1865. },
  1866. {
  1867. "name": "Europe (East)",
  1868. "url": "rtmp://publish-buh.myfreecams.com/NxServer"
  1869. },
  1870. {
  1871. "name": "Europe (West)",
  1872. "url": "rtmp://publish-ams.myfreecams.com/NxServer"
  1873. },
  1874. {
  1875. "name": "North America (East Coast)",
  1876. "url": "rtmp://publish-ord.myfreecams.com/NxServer"
  1877. },
  1878. {
  1879. "name": "North America (West Coast)",
  1880. "url": "rtmp://publish-tuk.myfreecams.com/NxServer"
  1881. },
  1882. {
  1883. "name": "South America",
  1884. "url": "rtmp://publish-sao.myfreecams.com/NxServer"
  1885. }
  1886. ],
  1887. "recommended": {
  1888. "keyint": 1,
  1889. "profile": "high",
  1890. "max fps": 60,
  1891. "max video bitrate": 10000,
  1892. "max audio bitrate": 192,
  1893. "x264opts": "tune=zerolatency scenecut=0"
  1894. },
  1895. "supported video codecs": [
  1896. "h264"
  1897. ]
  1898. },
  1899. {
  1900. "name": "PolyStreamer.com",
  1901. "servers": [
  1902. {
  1903. "name": "Auto-select closest server",
  1904. "url": "rtmp://live.polystreamer.com/live"
  1905. },
  1906. {
  1907. "name": "United States - West",
  1908. "url": "rtmp://us-west.live.polystreamer.com/live"
  1909. },
  1910. {
  1911. "name": "United States - East",
  1912. "url": "rtmp://us-east.live.polystreamer.com/live"
  1913. },
  1914. {
  1915. "name": "Australia",
  1916. "url": "rtmp://aus.live.polystreamer.com/live"
  1917. },
  1918. {
  1919. "name": "India",
  1920. "url": "rtmp://ind.live.polystreamer.com/live"
  1921. },
  1922. {
  1923. "name": "Germany",
  1924. "url": "rtmp://deu.live.polystreamer.com/live"
  1925. },
  1926. {
  1927. "name": "Japan",
  1928. "url": "rtmp://jpn.live.polystreamer.com/live"
  1929. },
  1930. {
  1931. "name": "Singapore",
  1932. "url": "rtmp://sgp.live.polystreamer.com/live"
  1933. }
  1934. ],
  1935. "recommended": {
  1936. "keyint": 2
  1937. },
  1938. "supported video codecs": [
  1939. "h264"
  1940. ]
  1941. },
  1942. {
  1943. "name": "OPENREC.tv - Premium member (プレミアム会員)",
  1944. "stream_key_link": "https://www.openrec.tv/login?keep_login=true&url=https://www.openrec.tv/dashboard/live?from=obs",
  1945. "servers": [
  1946. {
  1947. "name": "Default",
  1948. "url": "rtmp://a.station.openrec.tv:1935/live1"
  1949. }
  1950. ],
  1951. "recommended": {
  1952. "keyint": 2,
  1953. "max video bitrate": 5000,
  1954. "max audio bitrate": 160
  1955. },
  1956. "supported video codecs": [
  1957. "h264"
  1958. ]
  1959. },
  1960. {
  1961. "name": "nanoStream Cloud / bintu",
  1962. "more_info_link": "https://www.nanocosmos.de/obs",
  1963. "stream_key_link": "https://bintu-cloud-frontend.nanocosmos.de/organisation",
  1964. "servers": [
  1965. {
  1966. "name": "bintu-stream global ingest (rtmp)",
  1967. "url": "rtmp://bintu-stream.nanocosmos.de/live"
  1968. },
  1969. {
  1970. "name": "bintu-stream global ingest (rtmps)",
  1971. "url": "rtmps://bintu-stream.nanocosmos.de:1937/live"
  1972. },
  1973. {
  1974. "name": "bintu-vtrans global ingest with transcoding/ABR (rtmp)",
  1975. "url": "rtmp://bintu-vtrans.nanocosmos.de/live"
  1976. },
  1977. {
  1978. "name": "bintu-vtrans global ingest with transcoding/ABR (rtmps)",
  1979. "url": "rtmps://bintu-vtrans.nanocosmos.de:1937/live"
  1980. },
  1981. {
  1982. "name": "bintu-stream Europe (EU)",
  1983. "url": "rtmp://bintu-stream-eu.nanocosmos.de/live"
  1984. },
  1985. {
  1986. "name": "bintu-stream USA West (USW)",
  1987. "url": "rtmp://bintu-stream-usw.nanocosmos.de/live"
  1988. },
  1989. {
  1990. "name": "bintu-stream US East (USE)",
  1991. "url": "rtmp://bintu-stream-use.nanocosmos.de/live"
  1992. },
  1993. {
  1994. "name": "bintu-stream Asia South (ASS)",
  1995. "url": "rtmp://bintu-stream-ass.nanocosmos.de/live"
  1996. },
  1997. {
  1998. "name": "bintu-vtrans Europe (EU)",
  1999. "url": "rtmp://bintu-vtrans-eu.nanocosmos.de/live"
  2000. },
  2001. {
  2002. "name": "bintu-vtrans USA West (USW)",
  2003. "url": "rtmp://bintu-vtrans-usw.nanocosmos.de/live"
  2004. },
  2005. {
  2006. "name": "bintu-vtrans US East (USE)",
  2007. "url": "rtmp://bintu-vtrans-use.nanocosmos.de/live"
  2008. },
  2009. {
  2010. "name": "bintu-vtrans Asia South (ASS)",
  2011. "url": "rtmp://bintu-vtrans-ass.nanocosmos.de/live"
  2012. },
  2013. {
  2014. "name": "bintu-vtrans Australia (AU)",
  2015. "url": "rtmp://bintu-vtrans-au.nanocosmos.de/live"
  2016. }
  2017. ],
  2018. "recommended": {
  2019. "keyint": 2,
  2020. "profile": "baseline",
  2021. "bframes": 0,
  2022. "max video bitrate": 5000,
  2023. "max audio bitrate": 192,
  2024. "x264opts": "tune=zerolatency b-pyramid=0 scenecut=0"
  2025. },
  2026. "supported video codecs": [
  2027. "h264"
  2028. ]
  2029. },
  2030. {
  2031. "name": "Dacast",
  2032. "protocol": "RTMP",
  2033. "servers": [
  2034. {
  2035. "name": "Default",
  2036. "url": "https://developer.dacast.com/v3/encoder-setup/"
  2037. }
  2038. ],
  2039. "recommended": {
  2040. "keyint": 1,
  2041. "profile": "high",
  2042. "max video bitrate": 7000,
  2043. "max audio bitrate": 128
  2044. },
  2045. "supported video codecs": [
  2046. "h264"
  2047. ]
  2048. },
  2049. {
  2050. "name": "Bilibili Live - RTMP | 哔哩哔哩直播 - RTMP",
  2051. "more_info_link": "https://link.bilibili.com/p/help/index?id=4#/tools-tutorial",
  2052. "stream_key_link": "https://link.bilibili.com/p/center/index#/my-room/start-live",
  2053. "alt_names": [
  2054. "Bilibili Live"
  2055. ],
  2056. "servers": [
  2057. {
  2058. "name": "Global - Primary | 全球 - 主要",
  2059. "url": "rtmp://live-push.bilivideo.com/live-bvc/"
  2060. },
  2061. {
  2062. "name": "Non Chinese Mainland - Primary | 非中国大陆地区 - 主要",
  2063. "url": "rtmp://bdy.live-push.bilivideo.com/live-bvc/"
  2064. },
  2065. {
  2066. "name": "Chinese Mainland - Backup | 中国大陆地区 - 备用",
  2067. "url": "rtmp://txy2.live-push.bilivideo.com/live-bvc/"
  2068. },
  2069. {
  2070. "name": "Non Chinese Mainland - Backup | 非中国大陆地区 - 备用",
  2071. "url": "rtmp://txy.live-push.bilivideo.com/live-bvc/"
  2072. }
  2073. ],
  2074. "supported video codecs": [
  2075. "h264",
  2076. "hevc"
  2077. ]
  2078. },
  2079. {
  2080. "name": "BoxCast",
  2081. "stream_key_link": "https://dashboard.boxcast.com/#/sources",
  2082. "servers": [
  2083. {
  2084. "name": "BoxCast",
  2085. "url": "rtmp://rtmp.boxcast.com/live"
  2086. }
  2087. ],
  2088. "supported video codecs": [
  2089. "h264"
  2090. ]
  2091. },
  2092. {
  2093. "name": "Disciple Media",
  2094. "servers": [
  2095. {
  2096. "name": "Default",
  2097. "url": "rtmp://rtmp.disciplemedia.com/b-fme"
  2098. }
  2099. ],
  2100. "supported video codecs": [
  2101. "h264"
  2102. ]
  2103. },
  2104. {
  2105. "name": "Jio Games",
  2106. "servers": [
  2107. {
  2108. "name": "Primary",
  2109. "url": "rtmp://livepub1.api.engageapps.jio/live"
  2110. },
  2111. {
  2112. "name": "Secondary",
  2113. "url": "rtmp://livepub2.api.engageapps.jio/live"
  2114. }
  2115. ],
  2116. "recommended": {
  2117. "keyint": 2,
  2118. "max video bitrate": 32000,
  2119. "max audio bitrate": 256
  2120. },
  2121. "supported video codecs": [
  2122. "h264"
  2123. ]
  2124. },
  2125. {
  2126. "name": "Kuaishou Live",
  2127. "stream_key_link": "https://studio.kuaishou.com/live/list",
  2128. "servers": [
  2129. {
  2130. "name": "Default",
  2131. "url": "rtmp://open-push.voip.yximgs.com/gifshow/"
  2132. },
  2133. {
  2134. "name": "North America",
  2135. "url": "rtmp://tx.push.yximgs.com/live/"
  2136. }
  2137. ],
  2138. "supported video codecs": [
  2139. "h264"
  2140. ]
  2141. },
  2142. {
  2143. "name": "PhoneLiveStreaming",
  2144. "stream_key_link": "https://app.phonelivestreaming.com/media/rtmp",
  2145. "servers": [
  2146. {
  2147. "name": "PhoneLiveStreaming",
  2148. "url": "rtmp://live.phonelivestreaming.com/live/"
  2149. }
  2150. ],
  2151. "recommended": {
  2152. "keyint": 2,
  2153. "max video bitrate": 128,
  2154. "max audio bitrate": 160
  2155. },
  2156. "supported video codecs": [
  2157. "h264"
  2158. ]
  2159. },
  2160. {
  2161. "name": "Sympla",
  2162. "servers": [
  2163. {
  2164. "name": "Sympla RTMP",
  2165. "url": "rtmp://rtmp.sympla.com.br:5222/app"
  2166. }
  2167. ],
  2168. "recommended": {
  2169. "keyint": 2,
  2170. "max video bitrate": 5000,
  2171. "max audio bitrate": 160
  2172. },
  2173. "supported video codecs": [
  2174. "h264"
  2175. ]
  2176. },
  2177. {
  2178. "name": "Livepush",
  2179. "more_info_link": "https://docs.livepush.io/en/articles/5065323-how-to-stream-live-from-obs-to-livepush",
  2180. "servers": [
  2181. {
  2182. "name": "Livepush Global (Default)",
  2183. "url": "rtmp://dc-global.livepush.io/live"
  2184. },
  2185. {
  2186. "name": "Chicago, US",
  2187. "url": "rtmp://us-central-ch.livepush.io/live"
  2188. },
  2189. {
  2190. "name": "New York, US",
  2191. "url": "rtmp://us-east-ny.livepush.io/live"
  2192. },
  2193. {
  2194. "name": "Los Angeles, US",
  2195. "url": "rtmp://us-west-la.livepush.io/live"
  2196. },
  2197. {
  2198. "name": "Miami, US",
  2199. "url": "rtmp://us-south-mia.livepush.io/live"
  2200. },
  2201. {
  2202. "name": "Dallas, US",
  2203. "url": "rtmp://us-central-dal.livepush.io/live"
  2204. },
  2205. {
  2206. "name": "Montreal, CA",
  2207. "url": "rtmp://ca-central-mon.livepush.io/live"
  2208. },
  2209. {
  2210. "name": "Toronto, CA",
  2211. "url": "rtmp://ca-south-tor.livepush.io/live"
  2212. },
  2213. {
  2214. "name": "Sydney, AU",
  2215. "url": "rtmp://au-east-syd.livepush.io/live"
  2216. },
  2217. {
  2218. "name": "London, UK",
  2219. "url": "rtmp://uk-central-ldn.livepush.io/live"
  2220. },
  2221. {
  2222. "name": "Milan, Italy",
  2223. "url": "rtmp://it-north-mln.livepush.io/live"
  2224. },
  2225. {
  2226. "name": "Paris, FR",
  2227. "url": "rtmp://fr-central-par.livepush.io/live"
  2228. },
  2229. {
  2230. "name": "Singapore",
  2231. "url": "rtmp://as-southeast-sg.livepush.io/live"
  2232. },
  2233. {
  2234. "name": "Bangalore, IN",
  2235. "url": "rtmp://in-south-blr.livepush.io/live"
  2236. }
  2237. ],
  2238. "recommended": {
  2239. "keyint": 2,
  2240. "max video bitrate": 16000
  2241. },
  2242. "supported video codecs": [
  2243. "h264"
  2244. ]
  2245. },
  2246. {
  2247. "name": "Vindral",
  2248. "more_info_link": "https://docs.vindral.com/docs/vindral-cdn/",
  2249. "stream_key_link": "https://portal.cdn.vindral.com/channels",
  2250. "servers": [
  2251. {
  2252. "name": "Global",
  2253. "url": "rtmps://rtmp.global.cdn.vindral.com/publish"
  2254. }
  2255. ],
  2256. "recommended": {
  2257. "keyint": 1,
  2258. "profile": "high",
  2259. "bframes": 0,
  2260. "max video bitrate": 20000,
  2261. "max audio bitrate": 192
  2262. },
  2263. "supported video codecs": [
  2264. "h264"
  2265. ]
  2266. },
  2267. {
  2268. "name": "Whowatch (ふわっち)",
  2269. "more_info_link": "https://whowatch.tv/help/encoder",
  2270. "stream_key_link": "https://whowatch.tv/publish",
  2271. "servers": [
  2272. {
  2273. "name": "default",
  2274. "url": "rtmp://live.whowatch.tv/live/"
  2275. }
  2276. ],
  2277. "recommended": {
  2278. "keyint": 2,
  2279. "max video bitrate": 1800,
  2280. "max audio bitrate": 192
  2281. },
  2282. "supported video codecs": [
  2283. "h264"
  2284. ]
  2285. },
  2286. {
  2287. "name": "IRLToolkit",
  2288. "stream_key_link": "https://irl.run/settings/ingest/",
  2289. "servers": [
  2290. {
  2291. "name": "Global (Recommended)",
  2292. "url": "rtmps://stream.global.irl.run/ingest"
  2293. },
  2294. {
  2295. "name": "Los Angeles, US",
  2296. "url": "rtmps://stream.lax.irl.run/ingest"
  2297. },
  2298. {
  2299. "name": "Dallas, US",
  2300. "url": "rtmps://stream.dal.irl.run/ingest"
  2301. },
  2302. {
  2303. "name": "New York, US",
  2304. "url": "rtmps://stream.ewr.irl.run/ingest"
  2305. },
  2306. {
  2307. "name": "Miami, US",
  2308. "url": "rtmps://stream.mia.irl.run/ingest"
  2309. },
  2310. {
  2311. "name": "Amsterdam, NL",
  2312. "url": "rtmps://stream.ams.irl.run/ingest"
  2313. },
  2314. {
  2315. "name": "Frankfurt, DE",
  2316. "url": "rtmps://stream.fra.irl.run/ingest"
  2317. },
  2318. {
  2319. "name": "Singapore",
  2320. "url": "rtmps://stream.sin.irl.run/ingest"
  2321. },
  2322. {
  2323. "name": "Tokyo, JP",
  2324. "url": "rtmps://stream.tyo.irl.run/ingest"
  2325. },
  2326. {
  2327. "name": "Sydney, AU",
  2328. "url": "rtmps://stream.syd.irl.run/ingest"
  2329. }
  2330. ],
  2331. "recommended": {
  2332. "keyint": 2,
  2333. "bframes": 2,
  2334. "max video bitrate": 20000,
  2335. "max audio bitrate": 256
  2336. },
  2337. "supported video codecs": [
  2338. "h264"
  2339. ]
  2340. },
  2341. {
  2342. "name": "Bitmovin",
  2343. "more_info_link": "https://developer.bitmovin.com/docs/overview",
  2344. "stream_key_link": "https://bitmovin.com/dashboard/streams?streamsTab=LIVE",
  2345. "servers": [
  2346. {
  2347. "name": "Streams Live",
  2348. "url": "rtmp://live-input.bitmovin.com/streams"
  2349. }
  2350. ],
  2351. "recommended": {
  2352. "keyint": 2
  2353. },
  2354. "supported video codecs": [
  2355. "h264"
  2356. ]
  2357. },
  2358. {
  2359. "name": "Enchant.events",
  2360. "more_info_link": "https://docs.enchant.events/knowledge-base-y4pOb",
  2361. "servers": [
  2362. {
  2363. "name": "Primary RTMPS",
  2364. "url": "rtmps://stream.enchant.cloud:443/live"
  2365. }
  2366. ],
  2367. "recommended": {
  2368. "keyint": 2,
  2369. "profile": "high",
  2370. "max video bitrate": 9000,
  2371. "max audio bitrate": 192
  2372. },
  2373. "supported video codecs": [
  2374. "h264"
  2375. ]
  2376. },
  2377. {
  2378. "name": "Joystick.TV",
  2379. "more_info_link": "https://support.joystick.tv/live_streaming/",
  2380. "stream_key_link": "https://joystick.tv/stream-settings",
  2381. "servers": [
  2382. {
  2383. "name": "North America",
  2384. "url": "rtmp://live.joystick.tv/live/"
  2385. },
  2386. {
  2387. "name": "Europe",
  2388. "url": "rtmp://eu.live.joystick.tv/live/"
  2389. }
  2390. ],
  2391. "recommended": {
  2392. "keyint": 2,
  2393. "max video bitrate": 7500,
  2394. "max audio bitrate": 192,
  2395. "max fps": 60,
  2396. "profile": "main",
  2397. "bframes": 0,
  2398. "x264opts": "tune=zerolatency scenecut=0"
  2399. },
  2400. "supported video codecs": [
  2401. "h264"
  2402. ]
  2403. },
  2404. {
  2405. "name": "Livepeer Studio",
  2406. "more_info_link": "https://docs.livepeer.org/guides/developing/stream-via-obs",
  2407. "stream_key_link": "https://livepeer.studio/dashboard/streams",
  2408. "servers": [
  2409. {
  2410. "name": "Global (RTMP)",
  2411. "url": "rtmp://rtmp.livepeer.com/live"
  2412. },
  2413. {
  2414. "name": "Global (RTMP Primary)",
  2415. "url": "rtmp://rtmp-a.livepeer.com/live"
  2416. },
  2417. {
  2418. "name": "Global (RTMP Backup)",
  2419. "url": "rtmp://rtmp-b.livepeer.com/live"
  2420. }
  2421. ],
  2422. "recommended": {
  2423. "keyint": 1,
  2424. "profile": "high",
  2425. "bframes": 0,
  2426. "max video bitrate": 20000,
  2427. "max audio bitrate": 512
  2428. },
  2429. "supported video codecs": [
  2430. "h264"
  2431. ]
  2432. },
  2433. {
  2434. "name": "MasterStream.iR | مستراستریم | ری استریم و استریم همزمان",
  2435. "common": false,
  2436. "more_info_link": "https://masterstream.ir/webpage/page/docs",
  2437. "stream_key_link": "https://masterstream.ir/control-panel/streaming",
  2438. "servers": [
  2439. {
  2440. "name": "Iran Server 1 - Bandwidth Required",
  2441. "url": "rtmp://live1.masterstream.ir/live"
  2442. },
  2443. {
  2444. "name": "Iran Server 2 - Bandwidth Required",
  2445. "url": "rtmp://live2.masterstream.ir/live"
  2446. },
  2447. {
  2448. "name": "Iran Server 3 - Bandwidth Required",
  2449. "url": "rtmp://live3.masterstream.ir/live"
  2450. },
  2451. {
  2452. "name": "Iran Server 4 - Bandwidth Required",
  2453. "url": "rtmp://live4.masterstream.ir/live"
  2454. },
  2455. {
  2456. "name": "Iran Server 5 - Bandwidth Required",
  2457. "url": "rtmp://live5.masterstream.ir/live"
  2458. },
  2459. {
  2460. "name": "International Server 1",
  2461. "url": "rtmp://ilive1.masterstream.ir/live"
  2462. },
  2463. {
  2464. "name": "International Server 2",
  2465. "url": "rtmp://ilive2.masterstream.ir/live"
  2466. },
  2467. {
  2468. "name": "International Server 3",
  2469. "url": "rtmp://ilive3.masterstream.ir/live"
  2470. },
  2471. {
  2472. "name": "International Server 4",
  2473. "url": "rtmp://ilive4.masterstream.ir/live"
  2474. }
  2475. ],
  2476. "protocol": "RTMP",
  2477. "supported video codecs": [
  2478. "h264"
  2479. ],
  2480. "recommended": {
  2481. "keyint": 2,
  2482. "supported resolutions": [
  2483. "1920x1080",
  2484. "1280x720",
  2485. "852x480",
  2486. "640x360"
  2487. ],
  2488. "max video bitrate": 6000,
  2489. "max audio bitrate": 320,
  2490. "x264opts": "scenecut=0"
  2491. }
  2492. },
  2493. {
  2494. "name": "PandaTV | 팬더티비",
  2495. "common": false,
  2496. "servers": [
  2497. {
  2498. "name": "Default",
  2499. "url": "rtmp://rtmp.pandalive.co.kr/app"
  2500. }
  2501. ],
  2502. "recommended": {
  2503. "keyint": 2,
  2504. "supported resolutions": [
  2505. "1920x1080",
  2506. "1280x720",
  2507. "852x480",
  2508. "640x360"
  2509. ],
  2510. "max video bitrate": 7500,
  2511. "max audio bitrate": 320,
  2512. "x264opts": "scenecut=0"
  2513. },
  2514. "supported video codecs": [
  2515. "h264"
  2516. ]
  2517. },
  2518. {
  2519. "name": "Vault - by CommanderRoot",
  2520. "common": false,
  2521. "more_info_link": "https://vault.root-space.eu/",
  2522. "stream_key_link": "https://vault.root-space.eu/recordings",
  2523. "servers": [
  2524. {
  2525. "name": "EU - Central",
  2526. "url": "rtmp://ingest-eu-central.vault.root-space.eu/app"
  2527. },
  2528. {
  2529. "name": "US - West",
  2530. "url": "rtmp://ingest-us-west.vault.root-space.eu/app"
  2531. }
  2532. ],
  2533. "protocol": "RTMP",
  2534. "supported video codecs": [
  2535. "h264"
  2536. ],
  2537. "supported audio codecs": [
  2538. "aac"
  2539. ],
  2540. "recommended": {
  2541. "keyint": 2,
  2542. "max video bitrate": 7800,
  2543. "max audio bitrate": 320,
  2544. "x264opts": "scenecut=0"
  2545. }
  2546. },
  2547. {
  2548. "name": "CHZZK",
  2549. "common": false,
  2550. "stream_key_link": "https://studio.chzzk.naver.com/setting",
  2551. "servers": [
  2552. {
  2553. "name": "Default",
  2554. "url": "rtmp://global-rtmp.lip2.navercorp.com:8080/relay"
  2555. }
  2556. ],
  2557. "supported video codecs": [
  2558. "h264"
  2559. ],
  2560. "recommended": {
  2561. "keyint": 1,
  2562. "bframes": 0,
  2563. "max fps": 60,
  2564. "max video bitrate": 8000,
  2565. "max audio bitrate": 192,
  2566. "x264opts": "tune=zerolatency scenecut=0",
  2567. "supported resolutions": [
  2568. "1920x1080"
  2569. ]
  2570. }
  2571. },
  2572. {
  2573. "name": "Streamway",
  2574. "common": false,
  2575. "more_info_link": "https://support.streamway.in/how-to-connect-obs-studio-to-streamway/",
  2576. "stream_key_link": "https://app.streamway.in/broadcasts",
  2577. "servers": [
  2578. {
  2579. "name": "Primary",
  2580. "url": "rtmp://injest.streamway.in/LiveApp"
  2581. },
  2582. {
  2583. "name": "Backup",
  2584. "url": "rtmps://bkp.streamway.in:443/live"
  2585. }
  2586. ],
  2587. "protocol": "RTMP",
  2588. "supported video codecs": [
  2589. "h264"
  2590. ],
  2591. "recommended": {
  2592. "keyint": 2
  2593. }
  2594. },
  2595. {
  2596. "name": "SharePlay.tv",
  2597. "common": false,
  2598. "stream_key_link": "https://playstudio.shareplay.tv/stream/settings",
  2599. "servers": [
  2600. {
  2601. "name": "Default (Auto Detect)",
  2602. "url": "rtmp://stream.shareplay.tv"
  2603. },
  2604. {
  2605. "name": "Atlanta, Georgia, USA",
  2606. "url": "rtmp://live-us-atl-stream.shareplay.tv"
  2607. },
  2608. {
  2609. "name": "Chicago, Illinois, USA",
  2610. "url": "rtmp://live-us-ord-stream.shareplay.tv"
  2611. },
  2612. {
  2613. "name": "Dallas, Texas, USA",
  2614. "url": "rtmp://live-us-dfw-stream.shareplay.tv"
  2615. },
  2616. {
  2617. "name": "Los Angeles, California, USA",
  2618. "url": "rtmp://live-us-lax-stream.shareplay.tv"
  2619. },
  2620. {
  2621. "name": "Seattle, Washington, USA",
  2622. "url": "rtmp://live-us-sea-stream.shareplay.tv"
  2623. },
  2624. {
  2625. "name": "Washington D.C., USA",
  2626. "url": "rtmp://live-us-iad-stream.shareplay.tv"
  2627. },
  2628. {
  2629. "name": "Toronto, Canada",
  2630. "url": "rtmp://live-ca-yyz-stream.shareplay.tv"
  2631. },
  2632. {
  2633. "name": "Paris, France",
  2634. "url": "rtmp://live-fr-par-stream.shareplay.tv"
  2635. },
  2636. {
  2637. "name": "London, UK",
  2638. "url": "rtmp://live-uk-lhr-stream.shareplay.tv"
  2639. },
  2640. {
  2641. "name": "Sydney, Australia",
  2642. "url": "rtmp://live-au-syd-stream.shareplay.tv"
  2643. }
  2644. ],
  2645. "supported video codecs": [
  2646. "h264"
  2647. ],
  2648. "recommended": {
  2649. "keyint": 2,
  2650. "max video bitrate": 12000,
  2651. "max audio bitrate": 320
  2652. }
  2653. },
  2654. {
  2655. "name": "sheeta",
  2656. "common": false,
  2657. "more_info_link": "https://partner-support.sheeta.com/hc/ja/articles/4404573942425-%E7%94%9F%E6%94%BE%E9%80%81%E3%81%AE%E9%85%8D%E4%BF%A1%E6%96%B9%E6%B3%95",
  2658. "servers": [
  2659. {
  2660. "name": "Default",
  2661. "url": "rtmp://lsm.sheeta.com:1935/lsm"
  2662. }
  2663. ],
  2664. "protocol": "RTMP",
  2665. "supported video codecs": [
  2666. "h264"
  2667. ],
  2668. "supported audio codecs": [
  2669. "aac"
  2670. ],
  2671. "recommended": {
  2672. "keyint": 1,
  2673. "profile": "main",
  2674. "supported resolutions": [
  2675. "1920x1080",
  2676. "1280x720",
  2677. "854x480",
  2678. "640x480"
  2679. ],
  2680. "bitrate matrix": [
  2681. {
  2682. "res": "1920x1080",
  2683. "fps": 30,
  2684. "max bitrate": 6000
  2685. },
  2686. {
  2687. "res": "1280x720",
  2688. "fps": 30,
  2689. "max bitrate": 4700
  2690. },
  2691. {
  2692. "res": "854x480",
  2693. "fps": 30,
  2694. "max bitrate": 3400
  2695. },
  2696. {
  2697. "res": "640x480",
  2698. "fps": 30,
  2699. "max bitrate": 3400
  2700. },
  2701. {
  2702. "res": "1920x1080",
  2703. "fps": 60,
  2704. "max bitrate": 9000
  2705. },
  2706. {
  2707. "res": "1280x720",
  2708. "fps": 60,
  2709. "max bitrate": 7000
  2710. },
  2711. {
  2712. "res": "854x480",
  2713. "fps": 60,
  2714. "max bitrate": 5000
  2715. },
  2716. {
  2717. "res": "640x480",
  2718. "fps": 60,
  2719. "max bitrate": 5000
  2720. }
  2721. ],
  2722. "max fps": 60,
  2723. "max video bitrate": 9000,
  2724. "max audio bitrate": 512,
  2725. "x264opts": "scenecut=0",
  2726. "output": "rtmp_output"
  2727. }
  2728. },
  2729. {
  2730. "name": "Amazon IVS",
  2731. "supported video codecs": [
  2732. "h264"
  2733. ],
  2734. "servers": [
  2735. {
  2736. "name": "Asia: China, Hong Kong (6) (RTMPS)",
  2737. "url": "rtmps://hkg06.contribute.live-video.net/app"
  2738. },
  2739. {
  2740. "name": "Asia: India, Bangalore (1) (RTMPS)",
  2741. "url": "rtmps://blr01.contribute.live-video.net/app"
  2742. },
  2743. {
  2744. "name": "Asia: India, Chennai (RTMPS)",
  2745. "url": "rtmps://maa01.contribute.live-video.net/app"
  2746. },
  2747. {
  2748. "name": "Asia: India, Hyderabad (1) (RTMPS)",
  2749. "url": "rtmps://hyd01.contribute.live-video.net/app"
  2750. },
  2751. {
  2752. "name": "Asia: India, Mumbai (RTMPS)",
  2753. "url": "rtmps://bom01.contribute.live-video.net/app"
  2754. },
  2755. {
  2756. "name": "Asia: India, New Delhi (RTMPS)",
  2757. "url": "rtmps://del01.contribute.live-video.net/app"
  2758. },
  2759. {
  2760. "name": "Asia: Indonesia, Cikarang Barat (1) (RTMPS)",
  2761. "url": "rtmps://jkt01.contribute.live-video.net/app"
  2762. },
  2763. {
  2764. "name": "Asia: Indonesia, Jakarta (2) (RTMPS)",
  2765. "url": "rtmps://jkt02.contribute.live-video.net/app"
  2766. },
  2767. {
  2768. "name": "Asia: Japan, Osaka (1) (RTMPS)",
  2769. "url": "rtmps://osa01.contribute.live-video.net/app"
  2770. },
  2771. {
  2772. "name": "Asia: Japan, Tokyo (3) (RTMPS)",
  2773. "url": "rtmps://tyo03.contribute.live-video.net/app"
  2774. },
  2775. {
  2776. "name": "Asia: Japan, Tokyo (5) (RTMPS)",
  2777. "url": "rtmps://tyo05.contribute.live-video.net/app"
  2778. },
  2779. {
  2780. "name": "Asia: Manila, Philippines (1) (RTMPS)",
  2781. "url": "rtmps://mnl01.contribute.live-video.net/app"
  2782. },
  2783. {
  2784. "name": "Asia: Singapore (1) (RTMPS)",
  2785. "url": "rtmps://sin01.contribute.live-video.net/app"
  2786. },
  2787. {
  2788. "name": "Asia: Singapore (4) (RTMPS)",
  2789. "url": "rtmps://sin04.contribute.live-video.net/app"
  2790. },
  2791. {
  2792. "name": "Asia: South Korea, Seoul (3) (RTMPS)",
  2793. "url": "rtmps://sel03.contribute.live-video.net/app"
  2794. },
  2795. {
  2796. "name": "Asia: South Korea, Seoul (4) (RTMPS)",
  2797. "url": "rtmps://sel04.contribute.live-video.net/app"
  2798. },
  2799. {
  2800. "name": "Asia: Taiwan, Taipei (1) (RTMPS)",
  2801. "url": "rtmps://tpe01.contribute.live-video.net/app"
  2802. },
  2803. {
  2804. "name": "Asia: Taiwan, Taipei (3) (RTMPS)",
  2805. "url": "rtmps://tpe03.contribute.live-video.net/app"
  2806. },
  2807. {
  2808. "name": "Asia: Thailand, Bangkok (2) (RTMPS)",
  2809. "url": "rtmps://bkk02.contribute.live-video.net/app"
  2810. },
  2811. {
  2812. "name": "Europe: Austria, Vienna (2) (RTMPS)",
  2813. "url": "rtmps://vie02.contribute.live-video.net/app"
  2814. },
  2815. {
  2816. "name": "Europe: Czech Republic, Prague (RTMPS)",
  2817. "url": "rtmps://prg03.contribute.live-video.net/app"
  2818. },
  2819. {
  2820. "name": "Europe: Denmark, Copenhagen (RTMPS)",
  2821. "url": "rtmps://cph.contribute.live-video.net/app"
  2822. },
  2823. {
  2824. "name": "Europe: Finland, Helsinki (3) (RTMPS)",
  2825. "url": "rtmps://hel03.contribute.live-video.net/app"
  2826. },
  2827. {
  2828. "name": "Europe: France, Marseille (RTMPS)",
  2829. "url": "rtmps://mrs.contribute.live-video.net/app"
  2830. },
  2831. {
  2832. "name": "Europe: France, Marseille (2) (RTMPS)",
  2833. "url": "rtmps://mrs02.contribute.live-video.net/app"
  2834. },
  2835. {
  2836. "name": "Europe: France, Paris (10) (RTMPS)",
  2837. "url": "rtmps://cdg10.contribute.live-video.net/app"
  2838. },
  2839. {
  2840. "name": "Europe: France, Paris (2) (RTMPS)",
  2841. "url": "rtmps://cdg02.contribute.live-video.net/app"
  2842. },
  2843. {
  2844. "name": "Europe: Germany, Berlin (RTMPS)",
  2845. "url": "rtmps://ber.contribute.live-video.net/app"
  2846. },
  2847. {
  2848. "name": "Europe: Germany, Dusseldorf (1) (RTMPS)",
  2849. "url": "rtmps://dus01.contribute.live-video.net/app"
  2850. },
  2851. {
  2852. "name": "Europe: Germany, Frankfurt (2) (RTMPS)",
  2853. "url": "rtmps://fra02.contribute.live-video.net/app"
  2854. },
  2855. {
  2856. "name": "Europe: Germany, Frankfurt (5) (RTMPS)",
  2857. "url": "rtmps://fra05.contribute.live-video.net/app"
  2858. },
  2859. {
  2860. "name": "Europe: Germany, Frankfurt (6) (RTMPS)",
  2861. "url": "rtmps://fra06.contribute.live-video.net/app"
  2862. },
  2863. {
  2864. "name": "Europe: Germany, Munich (1) (RTMPS)",
  2865. "url": "rtmps://muc01.contribute.live-video.net/app"
  2866. },
  2867. {
  2868. "name": "Europe: Italy, Milan (2) (RTMPS)",
  2869. "url": "rtmps://mil02.contribute.live-video.net/app"
  2870. },
  2871. {
  2872. "name": "Europe: Netherlands, Amsterdam (2) (RTMPS)",
  2873. "url": "rtmps://ams02.contribute.live-video.net/app"
  2874. },
  2875. {
  2876. "name": "Europe: Netherlands, Amsterdam (3) (RTMPS)",
  2877. "url": "rtmps://ams03.contribute.live-video.net/app"
  2878. },
  2879. {
  2880. "name": "Europe: Norway, Oslo (RTMPS)",
  2881. "url": "rtmps://osl.contribute.live-video.net/app"
  2882. },
  2883. {
  2884. "name": "Europe: Poland, Warsaw (2) (RTMPS)",
  2885. "url": "rtmps://waw02.contribute.live-video.net/app"
  2886. },
  2887. {
  2888. "name": "Europe: Spain, Madrid (1) (RTMPS)",
  2889. "url": "rtmps://mad01.contribute.live-video.net/app"
  2890. },
  2891. {
  2892. "name": "Europe: Spain, Madrid (2) (RTMPS)",
  2893. "url": "rtmps://mad02.contribute.live-video.net/app"
  2894. },
  2895. {
  2896. "name": "Europe: Sweden, Stockholm (3) (RTMPS)",
  2897. "url": "rtmps://arn03.contribute.live-video.net/app"
  2898. },
  2899. {
  2900. "name": "Europe: Sweden, Stockholm (4) (RTMPS)",
  2901. "url": "rtmps://arn04.contribute.live-video.net/app"
  2902. },
  2903. {
  2904. "name": "Europe: UK, London (3) (RTMPS)",
  2905. "url": "rtmps://lhr03.contribute.live-video.net/app"
  2906. },
  2907. {
  2908. "name": "Europe: UK, London (4) (RTMPS)",
  2909. "url": "rtmps://lhr04.contribute.live-video.net/app"
  2910. },
  2911. {
  2912. "name": "Europe: UK, London (8) (RTMPS)",
  2913. "url": "rtmps://lhr08.contribute.live-video.net/app"
  2914. },
  2915. {
  2916. "name": "NA: Canada, Quebec (RTMPS)",
  2917. "url": "rtmps://ymq03.contribute.live-video.net/app"
  2918. },
  2919. {
  2920. "name": "NA: Canada, Toronto (RTMPS)",
  2921. "url": "rtmps://yto.contribute.live-video.net/app"
  2922. },
  2923. {
  2924. "name": "NA: Mexico, Queretaro (3) (RTMPS)",
  2925. "url": "rtmps://qro03.contribute.live-video.net/app"
  2926. },
  2927. {
  2928. "name": "NA: Mexico, Queretaro (4) (RTMPS)",
  2929. "url": "rtmps://qro04.contribute.live-video.net/app"
  2930. },
  2931. {
  2932. "name": "Oceania: Australia, Sydney (2) (RTMPS)",
  2933. "url": "rtmps://syd02.contribute.live-video.net/app"
  2934. },
  2935. {
  2936. "name": "Oceania: Australia, Sydney (3) (RTMPS)",
  2937. "url": "rtmps://syd03.contribute.live-video.net/app"
  2938. },
  2939. {
  2940. "name": "South America: Brazil, Fortaleza (1) (RTMPS)",
  2941. "url": "rtmps://for01.contribute.live-video.net/app"
  2942. },
  2943. {
  2944. "name": "South America: Brazil, Rio de Janeiro (3) (RTMPS)",
  2945. "url": "rtmps://rio03.contribute.live-video.net/app"
  2946. },
  2947. {
  2948. "name": "South America: Brazil, Rio de Janeiro (4) (RTMPS)",
  2949. "url": "rtmps://rio04.contribute.live-video.net/app"
  2950. },
  2951. {
  2952. "name": "South America: Brazil, Sao Paulo (RTMPS)",
  2953. "url": "rtmps://sao03.contribute.live-video.net/app"
  2954. },
  2955. {
  2956. "name": "South America: Brazil, Sao Paulo (5) (RTMPS)",
  2957. "url": "rtmps://sao05.contribute.live-video.net/app"
  2958. },
  2959. {
  2960. "name": "South America: Buenos Aires, Argentina (1) (RTMPS)",
  2961. "url": "rtmps://bue01.contribute.live-video.net/app"
  2962. },
  2963. {
  2964. "name": "South America: Colombia, Bogota (1) (RTMPS)",
  2965. "url": "rtmps://bog01.contribute.live-video.net/app"
  2966. },
  2967. {
  2968. "name": "US Central: Dallas, TX (RTMPS)",
  2969. "url": "rtmps://dfw.contribute.live-video.net/app"
  2970. },
  2971. {
  2972. "name": "US Central: Dallas, TX (2) (RTMPS)",
  2973. "url": "rtmps://dfw02.contribute.live-video.net/app"
  2974. },
  2975. {
  2976. "name": "US Central: Denver, CO (52) (RTMPS)",
  2977. "url": "rtmps://den52.contribute.live-video.net/app"
  2978. },
  2979. {
  2980. "name": "US Central: Garland, TX (56) (RTMPS)",
  2981. "url": "rtmps://dfw56.contribute.live-video.net/app"
  2982. },
  2983. {
  2984. "name": "US Central: Houston, TX (50) (RTMPS)",
  2985. "url": "rtmps://iah50.contribute.live-video.net/app"
  2986. },
  2987. {
  2988. "name": "US East: Ashburn, VA (5) (RTMPS)",
  2989. "url": "rtmps://iad05.contribute.live-video.net/app"
  2990. },
  2991. {
  2992. "name": "US East: Atlanta, GA (RTMPS)",
  2993. "url": "rtmps://atl.contribute.live-video.net/app"
  2994. },
  2995. {
  2996. "name": "US East: Chicago, IL (3) (RTMPS)",
  2997. "url": "rtmps://ord03.contribute.live-video.net/app"
  2998. },
  2999. {
  3000. "name": "US East: Chicago, IL (56) (RTMPS)",
  3001. "url": "rtmps://ord56.contribute.live-video.net/app"
  3002. },
  3003. {
  3004. "name": "US East: McAllen, TX (1) (RTMPS)",
  3005. "url": "rtmps://mfe01.contribute.live-video.net/app"
  3006. },
  3007. {
  3008. "name": "US East: Miami, FL (5) (RTMPS)",
  3009. "url": "rtmps://mia05.contribute.live-video.net/app"
  3010. },
  3011. {
  3012. "name": "US East: New York, NY (RTMPS)",
  3013. "url": "rtmps://jfk.contribute.live-video.net/app"
  3014. },
  3015. {
  3016. "name": "US East: New York, NY (50) (RTMPS)",
  3017. "url": "rtmps://jfk50.contribute.live-video.net/app"
  3018. },
  3019. {
  3020. "name": "US West: Los Angeles, CA (RTMPS)",
  3021. "url": "rtmps://lax.contribute.live-video.net/app"
  3022. },
  3023. {
  3024. "name": "US West: Salt Lake City, UT (RTMPS)",
  3025. "url": "rtmps://slc.contribute.live-video.net/app"
  3026. },
  3027. {
  3028. "name": "US West: San Francisco, CA (RTMPS)",
  3029. "url": "rtmps://sfo.contribute.live-video.net/app"
  3030. },
  3031. {
  3032. "name": "US West: San Jose, California (6) (RTMPS)",
  3033. "url": "rtmps://sjc06.contribute.live-video.net/app"
  3034. },
  3035. {
  3036. "name": "US West: Seattle, WA (RTMPS)",
  3037. "url": "rtmps://sea.contribute.live-video.net/app"
  3038. },
  3039. {
  3040. "name": "US West: Seattle, WA (2) (RTMPS)",
  3041. "url": "rtmps://sea02.contribute.live-video.net/app"
  3042. },
  3043. {
  3044. "name": "Asia: China, Hong Kong (6) (RTMP)",
  3045. "url": "rtmp://hkg06.contribute.live-video.net/app"
  3046. },
  3047. {
  3048. "name": "Asia: India, Bangalore (1) (RTMP)",
  3049. "url": "rtmp://blr01.contribute.live-video.net/app"
  3050. },
  3051. {
  3052. "name": "Asia: India, Chennai (RTMP)",
  3053. "url": "rtmp://maa01.contribute.live-video.net/app"
  3054. },
  3055. {
  3056. "name": "Asia: India, Hyderabad (1) (RTMP)",
  3057. "url": "rtmp://hyd01.contribute.live-video.net/app"
  3058. },
  3059. {
  3060. "name": "Asia: India, Mumbai (RTMP)",
  3061. "url": "rtmp://bom01.contribute.live-video.net/app"
  3062. },
  3063. {
  3064. "name": "Asia: India, New Delhi (RTMP)",
  3065. "url": "rtmp://del01.contribute.live-video.net/app"
  3066. },
  3067. {
  3068. "name": "Asia: Indonesia, Cikarang Barat (1) (RTMP)",
  3069. "url": "rtmp://jkt01.contribute.live-video.net/app"
  3070. },
  3071. {
  3072. "name": "Asia: Indonesia, Jakarta (2) (RTMP)",
  3073. "url": "rtmp://jkt02.contribute.live-video.net/app"
  3074. },
  3075. {
  3076. "name": "Asia: Japan, Osaka (1) (RTMP)",
  3077. "url": "rtmp://osa01.contribute.live-video.net/app"
  3078. },
  3079. {
  3080. "name": "Asia: Japan, Tokyo (3) (RTMP)",
  3081. "url": "rtmp://tyo03.contribute.live-video.net/app"
  3082. },
  3083. {
  3084. "name": "Asia: Japan, Tokyo (5) (RTMP)",
  3085. "url": "rtmp://tyo05.contribute.live-video.net/app"
  3086. },
  3087. {
  3088. "name": "Asia: Manila, Philippines (1) (RTMP)",
  3089. "url": "rtmp://mnl01.contribute.live-video.net/app"
  3090. },
  3091. {
  3092. "name": "Asia: Singapore (1) (RTMP)",
  3093. "url": "rtmp://sin01.contribute.live-video.net/app"
  3094. },
  3095. {
  3096. "name": "Asia: Singapore (4) (RTMP)",
  3097. "url": "rtmp://sin04.contribute.live-video.net/app"
  3098. },
  3099. {
  3100. "name": "Asia: South Korea, Seoul (3) (RTMP)",
  3101. "url": "rtmp://sel03.contribute.live-video.net/app"
  3102. },
  3103. {
  3104. "name": "Asia: South Korea, Seoul (4) (RTMP)",
  3105. "url": "rtmp://sel04.contribute.live-video.net/app"
  3106. },
  3107. {
  3108. "name": "Asia: Taiwan, Taipei (1) (RTMP)",
  3109. "url": "rtmp://tpe01.contribute.live-video.net/app"
  3110. },
  3111. {
  3112. "name": "Asia: Taiwan, Taipei (3) (RTMP)",
  3113. "url": "rtmp://tpe03.contribute.live-video.net/app"
  3114. },
  3115. {
  3116. "name": "Asia: Thailand, Bangkok (2) (RTMP)",
  3117. "url": "rtmp://bkk02.contribute.live-video.net/app"
  3118. },
  3119. {
  3120. "name": "Europe: Austria, Vienna (2) (RTMP)",
  3121. "url": "rtmp://vie02.contribute.live-video.net/app"
  3122. },
  3123. {
  3124. "name": "Europe: Czech Republic, Prague (RTMP)",
  3125. "url": "rtmp://prg03.contribute.live-video.net/app"
  3126. },
  3127. {
  3128. "name": "Europe: Denmark, Copenhagen (RTMP)",
  3129. "url": "rtmp://cph.contribute.live-video.net/app"
  3130. },
  3131. {
  3132. "name": "Europe: Finland, Helsinki (3) (RTMP)",
  3133. "url": "rtmp://hel03.contribute.live-video.net/app"
  3134. },
  3135. {
  3136. "name": "Europe: France, Marseille (RTMP)",
  3137. "url": "rtmp://mrs.contribute.live-video.net/app"
  3138. },
  3139. {
  3140. "name": "Europe: France, Marseille (2) (RTMP)",
  3141. "url": "rtmp://mrs02.contribute.live-video.net/app"
  3142. },
  3143. {
  3144. "name": "Europe: France, Paris (10) (RTMP)",
  3145. "url": "rtmp://cdg10.contribute.live-video.net/app"
  3146. },
  3147. {
  3148. "name": "Europe: France, Paris (2) (RTMP)",
  3149. "url": "rtmp://cdg02.contribute.live-video.net/app"
  3150. },
  3151. {
  3152. "name": "Europe: Germany, Berlin (RTMP)",
  3153. "url": "rtmp://ber.contribute.live-video.net/app"
  3154. },
  3155. {
  3156. "name": "Europe: Germany, Dusseldorf (1) (RTMP)",
  3157. "url": "rtmp://dus01.contribute.live-video.net/app"
  3158. },
  3159. {
  3160. "name": "Europe: Germany, Frankfurt (2) (RTMP)",
  3161. "url": "rtmp://fra02.contribute.live-video.net/app"
  3162. },
  3163. {
  3164. "name": "Europe: Germany, Frankfurt (5) (RTMP)",
  3165. "url": "rtmp://fra05.contribute.live-video.net/app"
  3166. },
  3167. {
  3168. "name": "Europe: Germany, Frankfurt (6) (RTMP)",
  3169. "url": "rtmp://fra06.contribute.live-video.net/app"
  3170. },
  3171. {
  3172. "name": "Europe: Germany, Munich (1) (RTMP)",
  3173. "url": "rtmp://muc01.contribute.live-video.net/app"
  3174. },
  3175. {
  3176. "name": "Europe: Italy, Milan (2) (RTMP)",
  3177. "url": "rtmp://mil02.contribute.live-video.net/app"
  3178. },
  3179. {
  3180. "name": "Europe: Netherlands, Amsterdam (2) (RTMP)",
  3181. "url": "rtmp://ams02.contribute.live-video.net/app"
  3182. },
  3183. {
  3184. "name": "Europe: Netherlands, Amsterdam (3) (RTMP)",
  3185. "url": "rtmp://ams03.contribute.live-video.net/app"
  3186. },
  3187. {
  3188. "name": "Europe: Norway, Oslo (RTMP)",
  3189. "url": "rtmp://osl.contribute.live-video.net/app"
  3190. },
  3191. {
  3192. "name": "Europe: Poland, Warsaw (2) (RTMP)",
  3193. "url": "rtmp://waw02.contribute.live-video.net/app"
  3194. },
  3195. {
  3196. "name": "Europe: Spain, Madrid (1) (RTMP)",
  3197. "url": "rtmp://mad01.contribute.live-video.net/app"
  3198. },
  3199. {
  3200. "name": "Europe: Spain, Madrid (2) (RTMP)",
  3201. "url": "rtmp://mad02.contribute.live-video.net/app"
  3202. },
  3203. {
  3204. "name": "Europe: Sweden, Stockholm (3) (RTMP)",
  3205. "url": "rtmp://arn03.contribute.live-video.net/app"
  3206. },
  3207. {
  3208. "name": "Europe: Sweden, Stockholm (4) (RTMP)",
  3209. "url": "rtmp://arn04.contribute.live-video.net/app"
  3210. },
  3211. {
  3212. "name": "Europe: UK, London (3) (RTMP)",
  3213. "url": "rtmp://lhr03.contribute.live-video.net/app"
  3214. },
  3215. {
  3216. "name": "Europe: UK, London (4) (RTMP)",
  3217. "url": "rtmp://lhr04.contribute.live-video.net/app"
  3218. },
  3219. {
  3220. "name": "Europe: UK, London (8) (RTMP)",
  3221. "url": "rtmp://lhr08.contribute.live-video.net/app"
  3222. },
  3223. {
  3224. "name": "NA: Canada, Quebec (RTMP)",
  3225. "url": "rtmp://ymq03.contribute.live-video.net/app"
  3226. },
  3227. {
  3228. "name": "NA: Canada, Toronto (RTMP)",
  3229. "url": "rtmp://yto.contribute.live-video.net/app"
  3230. },
  3231. {
  3232. "name": "NA: Mexico, Queretaro (3) (RTMP)",
  3233. "url": "rtmp://qro03.contribute.live-video.net/app"
  3234. },
  3235. {
  3236. "name": "NA: Mexico, Queretaro (4) (RTMP)",
  3237. "url": "rtmp://qro04.contribute.live-video.net/app"
  3238. },
  3239. {
  3240. "name": "Oceania: Australia, Sydney (2) (RTMP)",
  3241. "url": "rtmp://syd02.contribute.live-video.net/app"
  3242. },
  3243. {
  3244. "name": "Oceania: Australia, Sydney (3) (RTMP)",
  3245. "url": "rtmp://syd03.contribute.live-video.net/app"
  3246. },
  3247. {
  3248. "name": "South America: Brazil, Fortaleza (1) (RTMP)",
  3249. "url": "rtmp://for01.contribute.live-video.net/app"
  3250. },
  3251. {
  3252. "name": "South America: Brazil, Rio de Janeiro (3) (RTMP)",
  3253. "url": "rtmp://rio03.contribute.live-video.net/app"
  3254. },
  3255. {
  3256. "name": "South America: Brazil, Rio de Janeiro (4) (RTMP)",
  3257. "url": "rtmp://rio04.contribute.live-video.net/app"
  3258. },
  3259. {
  3260. "name": "South America: Brazil, Sao Paulo (RTMP)",
  3261. "url": "rtmp://sao03.contribute.live-video.net/app"
  3262. },
  3263. {
  3264. "name": "South America: Brazil, Sao Paulo (5) (RTMP)",
  3265. "url": "rtmp://sao05.contribute.live-video.net/app"
  3266. },
  3267. {
  3268. "name": "South America: Buenos Aires, Argentina (1) (RTMP)",
  3269. "url": "rtmp://bue01.contribute.live-video.net/app"
  3270. },
  3271. {
  3272. "name": "South America: Colombia, Bogota (1) (RTMP)",
  3273. "url": "rtmp://bog01.contribute.live-video.net/app"
  3274. },
  3275. {
  3276. "name": "US Central: Dallas, TX (RTMP)",
  3277. "url": "rtmp://dfw.contribute.live-video.net/app"
  3278. },
  3279. {
  3280. "name": "US Central: Dallas, TX (2) (RTMP)",
  3281. "url": "rtmp://dfw02.contribute.live-video.net/app"
  3282. },
  3283. {
  3284. "name": "US Central: Denver, CO (52) (RTMP)",
  3285. "url": "rtmp://den52.contribute.live-video.net/app"
  3286. },
  3287. {
  3288. "name": "US Central: Garland, TX (56) (RTMP)",
  3289. "url": "rtmp://dfw56.contribute.live-video.net/app"
  3290. },
  3291. {
  3292. "name": "US Central: Houston, TX (50) (RTMP)",
  3293. "url": "rtmp://iah50.contribute.live-video.net/app"
  3294. },
  3295. {
  3296. "name": "US East: Ashburn, VA (5) (RTMP)",
  3297. "url": "rtmp://iad05.contribute.live-video.net/app"
  3298. },
  3299. {
  3300. "name": "US East: Atlanta, GA (RTMP)",
  3301. "url": "rtmp://atl.contribute.live-video.net/app"
  3302. },
  3303. {
  3304. "name": "US East: Chicago, IL (3) (RTMP)",
  3305. "url": "rtmp://ord03.contribute.live-video.net/app"
  3306. },
  3307. {
  3308. "name": "US East: Chicago, IL (56) (RTMP)",
  3309. "url": "rtmp://ord56.contribute.live-video.net/app"
  3310. },
  3311. {
  3312. "name": "US East: McAllen, TX (1) (RTMP)",
  3313. "url": "rtmp://mfe01.contribute.live-video.net/app"
  3314. },
  3315. {
  3316. "name": "US East: Miami, FL (5) (RTMP)",
  3317. "url": "rtmp://mia05.contribute.live-video.net/app"
  3318. },
  3319. {
  3320. "name": "US East: New York, NY (RTMP)",
  3321. "url": "rtmp://jfk.contribute.live-video.net/app"
  3322. },
  3323. {
  3324. "name": "US East: New York, NY (50) (RTMP)",
  3325. "url": "rtmp://jfk50.contribute.live-video.net/app"
  3326. },
  3327. {
  3328. "name": "US West: Los Angeles, CA (RTMP)",
  3329. "url": "rtmp://lax.contribute.live-video.net/app"
  3330. },
  3331. {
  3332. "name": "US West: Salt Lake City, UT (RTMP)",
  3333. "url": "rtmp://slc.contribute.live-video.net/app"
  3334. },
  3335. {
  3336. "name": "US West: San Francisco, CA (RTMP)",
  3337. "url": "rtmp://sfo.contribute.live-video.net/app"
  3338. },
  3339. {
  3340. "name": "US West: San Jose, California (6) (RTMP)",
  3341. "url": "rtmp://sjc06.contribute.live-video.net/app"
  3342. },
  3343. {
  3344. "name": "US West: Seattle, WA (RTMP)",
  3345. "url": "rtmp://sea.contribute.live-video.net/app"
  3346. },
  3347. {
  3348. "name": "US West: Seattle, WA (2) (RTMP)",
  3349. "url": "rtmp://sea02.contribute.live-video.net/app"
  3350. }
  3351. ],
  3352. "multitrack_video_configuration_url": "https://ingest.contribute.live-video.net/api/v3/GetClientConfiguration",
  3353. "recommended": {
  3354. "keyint": 2,
  3355. "x264opts": "scenecut=0"
  3356. }
  3357. },
  3358. {
  3359. "name": "Dolby OptiView Real-time",
  3360. "alt_names": [
  3361. "Dolby Millicast"
  3362. ],
  3363. "common": false,
  3364. "more_info_link": "https://optiview.dolby.com/docs/millicast/using-obs/",
  3365. "stream_key_link": "https://streaming.dolby.io",
  3366. "multitrack_video_configuration_url": "https://director.millicast.com/api/multitrackvideo/configuration",
  3367. "multitrack_video_name": "Enhanced Broadcasting",
  3368. "multitrack_video_learn_more_link": "https://optiview.dolby.com/docs/millicast/obs-enhanced-broadcasting-multitrack-video/",
  3369. "servers": [
  3370. {
  3371. "name": "Global (RTMPS)",
  3372. "url": "rtmps://rtmp-auto.millicast.com:443/v2/pub"
  3373. },
  3374. {
  3375. "name": "Global (RTMP)",
  3376. "url": "rtmp://rtmp-auto.millicast.com:1935/v2/pub"
  3377. },
  3378. {
  3379. "name": "Bangalore, India (RTMPS)",
  3380. "url": "rtmps://rtmp-blr-1.millicast.com:443/v2/pub"
  3381. },
  3382. {
  3383. "name": "Bangalore, India (RTMP)",
  3384. "url": "rtmp://rtmp-blr-1.millicast.com:1935/v2/pub"
  3385. },
  3386. {
  3387. "name": "Frankfurt, Germany (RTMPS)",
  3388. "url": "rtmps://rtmp-fra-1.millicast.com:443/v2/pub"
  3389. },
  3390. {
  3391. "name": "Frankfurt, Germany (RTMP)",
  3392. "url": "rtmp://rtmp-fra-1.millicast.com:1935/v2/pub"
  3393. },
  3394. {
  3395. "name": "Ashburn, Virginia, USA (RTMPS)",
  3396. "url": "rtmps://rtmp-iad-1.millicast.com:443/v2/pub"
  3397. },
  3398. {
  3399. "name": "Ashburn, Virginia, USA (RTMP)",
  3400. "url": "rtmp://rtmp-iad-1.millicast.com:1935/v2/pub"
  3401. },
  3402. {
  3403. "name": "London, England (RTMPS)",
  3404. "url": "rtmps://rtmp-lon-1.millicast.com:443/v2/pub"
  3405. },
  3406. {
  3407. "name": "London, England (RTMP)",
  3408. "url": "rtmp://rtmp-lon-1.millicast.com:1935/v2/pub"
  3409. },
  3410. {
  3411. "name": "Phoenix, AZ, USA (RTMPS)",
  3412. "url": "rtmps://rtmp-phx-1.millicast.com:443/v2/pub"
  3413. },
  3414. {
  3415. "name": "Phoenix, AZ, USA (RTMP)",
  3416. "url": "rtmp://rtmp-phx-1.millicast.com:1935/v2/pub"
  3417. },
  3418. {
  3419. "name": "Sao Paulo, Brazil (RTMPS)",
  3420. "url": "rtmps://rtmp-sao-1.millicast.com:443/v2/pub"
  3421. },
  3422. {
  3423. "name": "Sao Paulo, Brazil (RTMP)",
  3424. "url": "rtmp://rtmp-sao-1.millicast.com:1935/v2/pub"
  3425. },
  3426. {
  3427. "name": "Singapore (RTMPS)",
  3428. "url": "rtmps://rtmp-sgp-1.millicast.com:443/v2/pub"
  3429. },
  3430. {
  3431. "name": "Singapore (RTMP)",
  3432. "url": "rtmp://rtmp-sgp-1.millicast.com:1935/v2/pub"
  3433. },
  3434. {
  3435. "name": "Sydney, Australia (RTMPS)",
  3436. "url": "rtmps://rtmp-syd-1.millicast.com:443/v2/pub"
  3437. },
  3438. {
  3439. "name": "Sydney, Australia (RTMP)",
  3440. "url": "rtmp://rtmp-syd-1.millicast.com:1935/v2/pub"
  3441. }
  3442. ],
  3443. "supported video codecs": [
  3444. "h264",
  3445. "hevc",
  3446. "av1"
  3447. ],
  3448. "recommended": {
  3449. "keyint": 1,
  3450. "bframes": 0
  3451. }
  3452. },
  3453. {
  3454. "name": "NFHS Network",
  3455. "more_info_link": "https://support.nfhsnetwork.com/hc/en-us",
  3456. "stream_key_link": "https://console.nfhsnetwork.com/nfhs-events/",
  3457. "servers": [
  3458. {
  3459. "name": "Manual Broadcasts",
  3460. "url": "rtmp://video.nfhsnetwork.com/manual"
  3461. }
  3462. ],
  3463. "recommended": {
  3464. "supported resolutions": [
  3465. "1920x1080",
  3466. "1280x720",
  3467. "640x360"
  3468. ],
  3469. "max fps": 60
  3470. },
  3471. "supported video codecs": [
  3472. "h264"
  3473. ]
  3474. },
  3475. {
  3476. "name": "VRCDN - Live",
  3477. "more_info_link": "https://vrcdn.live",
  3478. "servers": [
  3479. {
  3480. "name": "Automatic",
  3481. "url": "rtmp://ingest.vrcdn.live/live"
  3482. }
  3483. ],
  3484. "supported video codecs": [
  3485. "h264"
  3486. ],
  3487. "recommended": {
  3488. "keyint": 1,
  3489. "max video bitrate": 6000
  3490. }
  3491. },
  3492. {
  3493. "name": "SOOP Global",
  3494. "common": false,
  3495. "more_info_link": "https://sooplive.helpshift.com/hc/en/3-soop/faq/20",
  3496. "stream_key_link": "https://www.sooplive.com/dashboard",
  3497. "servers": [
  3498. {
  3499. "name": "Default",
  3500. "url": "rtmp://global-stream.sooplive.com/app"
  3501. }
  3502. ],
  3503. "protocol": "RTMP",
  3504. "supported video codecs": [
  3505. "h264"
  3506. ],
  3507. "supported audio codecs": [
  3508. "aac"
  3509. ],
  3510. "recommended": {
  3511. "keyint": 1,
  3512. "profile": "main",
  3513. "bframes": 0,
  3514. "supported resolutions": [
  3515. "1920x1080",
  3516. "1280x720",
  3517. "960x540",
  3518. "640x360"
  3519. ],
  3520. "bitrate matrix": [
  3521. {
  3522. "res": "640x360",
  3523. "fps": 30,
  3524. "max bitrate": 500
  3525. },
  3526. {
  3527. "res": "640x360",
  3528. "fps": 60,
  3529. "max bitrate": 1000
  3530. },
  3531. {
  3532. "res": "960x540",
  3533. "fps": 30,
  3534. "max bitrate": 2000
  3535. },
  3536. {
  3537. "res": "960x540",
  3538. "fps": 60,
  3539. "max bitrate": 2000
  3540. },
  3541. {
  3542. "res": "1280x720",
  3543. "fps": 30,
  3544. "max bitrate": 4000
  3545. },
  3546. {
  3547. "res": "1280x720",
  3548. "fps": 60,
  3549. "max bitrate": 4000
  3550. },
  3551. {
  3552. "res": "1920x1080",
  3553. "fps": 30,
  3554. "max bitrate": 8000
  3555. },
  3556. {
  3557. "res": "1920x1080",
  3558. "fps": 60,
  3559. "max bitrate": 8000
  3560. }
  3561. ],
  3562. "max fps": 60,
  3563. "max video bitrate": 8000,
  3564. "max audio bitrate": 192
  3565. }
  3566. },
  3567. {
  3568. "name": "Sportify",
  3569. "more_info_link": "https://www.homegroundapp.com",
  3570. "servers": [
  3571. {
  3572. "name": "Default",
  3573. "url": "rtmp://stream.homegroundapp.com/live"
  3574. }
  3575. ],
  3576. "recommended": {
  3577. "keyint": 2,
  3578. "max video bitrate": 3500,
  3579. "max audio bitrate": 192,
  3580. "supported resolutions": [
  3581. "1920x1080",
  3582. "1280x720"
  3583. ],
  3584. "max fps": 30
  3585. },
  3586. "supported video codecs": [
  3587. "h264"
  3588. ]
  3589. }
  3590. ]
  3591. }