services.json 79 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415
  1. {
  2. "$schema": "schema/service-schema-v3.json",
  3. "format_version": 3,
  4. "services": [
  5. {
  6. "name": "Twitch",
  7. "common": true,
  8. "stream_key_link": "https://dashboard.twitch.tv/settings/stream",
  9. "servers": [
  10. {
  11. "name": "Asia: Hong Kong",
  12. "url": "rtmp://live-hkg.twitch.tv/app"
  13. },
  14. {
  15. "name": "Asia: Seoul, South Korea",
  16. "url": "rtmp://live-sel.twitch.tv/app"
  17. },
  18. {
  19. "name": "Asia: Singapore",
  20. "url": "rtmp://live-sin.twitch.tv/app"
  21. },
  22. {
  23. "name": "Asia: Taipei, Taiwan",
  24. "url": "rtmp://live-tpe.twitch.tv/app"
  25. },
  26. {
  27. "name": "Asia: Tokyo, Japan",
  28. "url": "rtmp://live-tyo.twitch.tv/app"
  29. },
  30. {
  31. "name": "Australia: Sydney",
  32. "url": "rtmp://live-syd.twitch.tv/app"
  33. },
  34. {
  35. "name": "EU: Amsterdam, NL",
  36. "url": "rtmp://live-ams.twitch.tv/app"
  37. },
  38. {
  39. "name": "EU: Berlin, DE",
  40. "url": "rtmp://live-ber.twitch.tv/app"
  41. },
  42. {
  43. "name": "Europe: Copenhagen, DK",
  44. "url": "rtmp://live-cph.twitch.tv/app"
  45. },
  46. {
  47. "name": "EU: Frankfurt, DE",
  48. "url": "rtmp://live-fra.twitch.tv/app"
  49. },
  50. {
  51. "name": "EU: Helsinki, FI",
  52. "url": "rtmp://live-hel.twitch.tv/app"
  53. },
  54. {
  55. "name": "EU: Lisbon, Portugal",
  56. "url": "rtmp://live-lis.twitch.tv/app"
  57. },
  58. {
  59. "name": "EU: London, UK",
  60. "url": "rtmp://live-lhr.twitch.tv/app"
  61. },
  62. {
  63. "name": "EU: Madrid, Spain",
  64. "url": "rtmp://live-mad.twitch.tv/app"
  65. },
  66. {
  67. "name": "EU: Marseille, FR",
  68. "url": "rtmp://live-mrs.twitch.tv/app"
  69. },
  70. {
  71. "name": "EU: Milan, Italy",
  72. "url": "rtmp://live-mil.twitch.tv/app"
  73. },
  74. {
  75. "name": "EU: Norway, Oslo",
  76. "url": "rtmp://live-osl.twitch.tv/app"
  77. },
  78. {
  79. "name": "EU: Paris, FR",
  80. "url": "rtmp://live-cdg.twitch.tv/app"
  81. },
  82. {
  83. "name": "EU: Prague, CZ",
  84. "url": "rtmp://live-prg.twitch.tv/app"
  85. },
  86. {
  87. "name": "EU: Stockholm, SE",
  88. "url": "rtmp://live-arn.twitch.tv/app"
  89. },
  90. {
  91. "name": "EU: Vienna, Austria",
  92. "url": "rtmp://live-vie.twitch.tv/app"
  93. },
  94. {
  95. "name": "EU: Warsaw, Poland",
  96. "url": "rtmp://live-waw.twitch.tv/app"
  97. },
  98. {
  99. "name": "NA: Mexico City",
  100. "url": "rtmp://live-qro.twitch.tv/app"
  101. },
  102. {
  103. "name": "NA: Quebec, Canada",
  104. "url": "rtmp://live-ymq.twitch.tv/app"
  105. },
  106. {
  107. "name": "NA: Toronto, Canada",
  108. "url": "rtmp://live-yto.twitch.tv/app"
  109. },
  110. {
  111. "name": "South America: Argentina",
  112. "url": "rtmp://live-eze.twitch.tv/app"
  113. },
  114. {
  115. "name": "South America: Chile",
  116. "url": "rtmp://live-scl.twitch.tv/app"
  117. },
  118. {
  119. "name": "South America: Lima, Peru",
  120. "url": "rtmp://live-lim.twitch.tv/app"
  121. },
  122. {
  123. "name": "South America: Medellin, Colombia",
  124. "url": "rtmp://live-mde.twitch.tv/app"
  125. },
  126. {
  127. "name": "South America: Rio de Janeiro, Brazil",
  128. "url": "rtmp://live-rio.twitch.tv/app"
  129. },
  130. {
  131. "name": "South America: Sao Paulo, Brazil",
  132. "url": "rtmp://live-sao.twitch.tv/app"
  133. },
  134. {
  135. "name": "US Central: Dallas, TX",
  136. "url": "rtmp://live-dfw.twitch.tv/app"
  137. },
  138. {
  139. "name": "US Central: Denver, CO",
  140. "url": "rtmp://live-den.twitch.tv/app"
  141. },
  142. {
  143. "name": "US Central: Houston, TX",
  144. "url": "rtmp://live-hou.twitch.tv/app"
  145. },
  146. {
  147. "name": "US Central: Salt Lake City, UT",
  148. "url": "rtmp://live-slc.twitch.tv/app"
  149. },
  150. {
  151. "name": "US East: Ashburn, VA",
  152. "url": "rtmp://live-iad.twitch.tv/app"
  153. },
  154. {
  155. "name": "US East: Atlanta, GA",
  156. "url": "rtmp://live-atl.twitch.tv/app"
  157. },
  158. {
  159. "name": "US East: Chicago",
  160. "url": "rtmp://live-ord.twitch.tv/app"
  161. },
  162. {
  163. "name": "US East: Miami, FL",
  164. "url": "rtmp://live-mia.twitch.tv/app"
  165. },
  166. {
  167. "name": "US East: New York, NY",
  168. "url": "rtmp://live-jfk.twitch.tv/app"
  169. },
  170. {
  171. "name": "US West: Los Angeles, CA",
  172. "url": "rtmp://live-lax.twitch.tv/app"
  173. },
  174. {
  175. "name": "US West: Phoenix, AZ",
  176. "url": "rtmp://live-phx.twitch.tv/app"
  177. },
  178. {
  179. "name": "US West: Portland, Oregon",
  180. "url": "rtmp://live-pdx.twitch.tv/app"
  181. },
  182. {
  183. "name": "US West: San Francisco, CA",
  184. "url": "rtmp://live-sfo.twitch.tv/app"
  185. },
  186. {
  187. "name": "US West: San Jose, CA",
  188. "url": "rtmp://live-sjc.twitch.tv/app"
  189. },
  190. {
  191. "name": "US West: Seattle, WA",
  192. "url": "rtmp://live-sea.twitch.tv/app"
  193. }
  194. ],
  195. "recommended": {
  196. "keyint": 2,
  197. "max video bitrate": 6000,
  198. "max audio bitrate": 320,
  199. "x264opts": "scenecut=0"
  200. }
  201. },
  202. {
  203. "name": "YouTube - HLS",
  204. "common": false,
  205. "more_info_link": "https://developers.google.com/youtube/v3/live/guides/ingestion-protocol-comparison",
  206. "stream_key_link": "https://www.youtube.com/live_dashboard",
  207. "supported video codecs": [
  208. "h264",
  209. "hevc"
  210. ],
  211. "servers": [
  212. {
  213. "name": "Primary YouTube ingest server",
  214. "url": "https://a.upload.youtube.com/http_upload_hls?cid={stream_key}&copy=0&file=out.m3u8"
  215. },
  216. {
  217. "name": "Backup YouTube ingest server",
  218. "url": "https://b.upload.youtube.com/http_upload_hls?cid={stream_key}&copy=1&file=out.m3u8"
  219. }
  220. ],
  221. "recommended": {
  222. "keyint": 2,
  223. "output": "ffmpeg_hls_muxer",
  224. "max video bitrate": 51000,
  225. "max audio bitrate": 160
  226. }
  227. },
  228. {
  229. "name": "YouTube - RTMPS",
  230. "common": true,
  231. "stream_key_link": "https://www.youtube.com/live_dashboard",
  232. "alt_names": [
  233. "YouTube / YouTube Gaming",
  234. "YouTube - RTMP",
  235. "YouTube - RTMPS (Beta)"
  236. ],
  237. "servers": [
  238. {
  239. "name": "Primary YouTube ingest server",
  240. "url": "rtmps://a.rtmps.youtube.com:443/live2"
  241. },
  242. {
  243. "name": "Backup YouTube ingest server",
  244. "url": "rtmps://b.rtmps.youtube.com:443/live2?backup=1"
  245. },
  246. {
  247. "name": "Primary YouTube ingest server (legacy RTMP)",
  248. "url": "rtmp://a.rtmp.youtube.com/live2"
  249. },
  250. {
  251. "name": "Backup YouTube ingest server (legacy RTMP)",
  252. "url": "rtmp://b.rtmp.youtube.com/live2?backup=1"
  253. }
  254. ],
  255. "recommended": {
  256. "keyint": 2,
  257. "max video bitrate": 51000,
  258. "max audio bitrate": 160
  259. }
  260. },
  261. {
  262. "name": "Loola.tv",
  263. "common": false,
  264. "servers": [
  265. {
  266. "name": "US East: Virginia",
  267. "url": "rtmp://rtmp.loola.tv/push"
  268. },
  269. {
  270. "name": "EU Central: Germany",
  271. "url": "rtmp://rtmp-eu.loola.tv/push"
  272. },
  273. {
  274. "name": "South America: Brazil",
  275. "url": "rtmp://rtmp-sa.loola.tv/push"
  276. },
  277. {
  278. "name": "Asia/Pacific: Singapore",
  279. "url": "rtmp://rtmp-sg.loola.tv/push"
  280. },
  281. {
  282. "name": "Middle East: Bahrain",
  283. "url": "rtmp://rtmp-me.loola.tv/push"
  284. }
  285. ],
  286. "recommended": {
  287. "keyint": 2,
  288. "profile": "high",
  289. "max video bitrate": 2500,
  290. "max audio bitrate": 160,
  291. "bframes": 2,
  292. "x264opts": "scenecut=0"
  293. }
  294. },
  295. {
  296. "name": "Lovecast",
  297. "servers": [
  298. {
  299. "name": "Default",
  300. "url": "rtmp://live-a.lovecastapp.com:5222/app"
  301. }
  302. ],
  303. "recommended": {
  304. "keyint": 2,
  305. "profile": "main",
  306. "max video bitrate": 8000,
  307. "max audio bitrate": 192,
  308. "supported resolutions": [
  309. "1920x1080",
  310. "1280x720"
  311. ],
  312. "max fps": 30
  313. }
  314. },
  315. {
  316. "name": "Luzento.com - RTMP",
  317. "stream_key_link": "https://cms.luzento.com/dashboard/stream-key?from=OBS",
  318. "servers": [
  319. {
  320. "name": "Primary",
  321. "url": "rtmp://ingest.luzento.com/live"
  322. },
  323. {
  324. "name": "Primary (Test)",
  325. "url": "rtmp://ingest.luzento.com/test"
  326. }
  327. ],
  328. "recommended": {
  329. "keyint": 2,
  330. "max video bitrate": 6000,
  331. "max audio bitrate": 256,
  332. "bframes": 2,
  333. "x264opts": "scenecut=0"
  334. }
  335. },
  336. {
  337. "name": "VIMM",
  338. "servers": [
  339. {
  340. "name": "Europe: Frankfurt",
  341. "url": "rtmp://eu.vimm.tv/live"
  342. },
  343. {
  344. "name": "North America: Montreal",
  345. "url": "rtmp://us.vimm.tv/live"
  346. }
  347. ],
  348. "recommended": {
  349. "keyint": 2,
  350. "max video bitrate": 8000,
  351. "max audio bitrate": 320,
  352. "x264opts": "scenecut=0"
  353. }
  354. },
  355. {
  356. "name": "Web.TV",
  357. "servers": [
  358. {
  359. "name": "Primary",
  360. "url": "rtmp://live3.origins.web.tv/liveext"
  361. }
  362. ],
  363. "recommended": {
  364. "keyint": 2,
  365. "profile": "main",
  366. "max video bitrate": 3500,
  367. "max audio bitrate": 160
  368. }
  369. },
  370. {
  371. "name": "GoodGame.ru",
  372. "servers": [
  373. {
  374. "name": "Моscow",
  375. "url": "rtmp://msk.goodgame.ru:1940/live"
  376. }
  377. ]
  378. },
  379. {
  380. "name": "YouStreamer",
  381. "stream_key_link": "https://www.app.youstreamer.com/stream/",
  382. "servers": [
  383. {
  384. "name": "Moscow",
  385. "url": "rtmp://push.youstreamer.com/in/"
  386. }
  387. ]
  388. },
  389. {
  390. "name": "Vaughn Live / iNSTAGIB",
  391. "servers": [
  392. {
  393. "name": "US: Chicago, IL",
  394. "url": "rtmp://live-ord.vaughnsoft.net/live"
  395. },
  396. {
  397. "name": "US: Vint Hill, VA",
  398. "url": "rtmp://live-iad.vaughnsoft.net/live"
  399. },
  400. {
  401. "name": "US: Denver, CO",
  402. "url": "rtmp://live-den.vaughnsoft.net/live"
  403. },
  404. {
  405. "name": "US: New York, NY",
  406. "url": "rtmp://live-nyc.vaughnsoft.net/live"
  407. },
  408. {
  409. "name": "US: Miami, FL",
  410. "url": "rtmp://live-mia.vaughnsoft.net/live"
  411. },
  412. {
  413. "name": "US: Seattle, WA",
  414. "url": "rtmp://live-sea.vaughnsoft.net/live"
  415. },
  416. {
  417. "name": "EU: Amsterdam, NL",
  418. "url": "rtmp://live-ams.vaughnsoft.net/live"
  419. },
  420. {
  421. "name": "EU: London, UK",
  422. "url": "rtmp://live-lhr.vaughnsoft.net/live"
  423. }
  424. ],
  425. "recommended": {
  426. "keyint": 2,
  427. "max video bitrate": 15000,
  428. "max audio bitrate": 320
  429. }
  430. },
  431. {
  432. "name": "Breakers.TV",
  433. "servers": [
  434. {
  435. "name": "US: Chicago, IL",
  436. "url": "rtmp://live-ord.vaughnsoft.net/live"
  437. },
  438. {
  439. "name": "US: Vint Hill, VA",
  440. "url": "rtmp://live-iad.vaughnsoft.net/live"
  441. },
  442. {
  443. "name": "US: Denver, CO",
  444. "url": "rtmp://live-den.vaughnsoft.net/live"
  445. },
  446. {
  447. "name": "US: New York, NY",
  448. "url": "rtmp://live-nyc.vaughnsoft.net/live"
  449. },
  450. {
  451. "name": "US: Miami, FL",
  452. "url": "rtmp://live-mia.vaughnsoft.net/live"
  453. },
  454. {
  455. "name": "US: Seattle, WA",
  456. "url": "rtmp://live-sea.vaughnsoft.net/live"
  457. },
  458. {
  459. "name": "EU: Amsterdam, NL",
  460. "url": "rtmp://live-ams.vaughnsoft.net/live"
  461. },
  462. {
  463. "name": "EU: London, UK",
  464. "url": "rtmp://live-lhr.vaughnsoft.net/live"
  465. }
  466. ],
  467. "recommended": {
  468. "keyint": 2,
  469. "max video bitrate": 15000,
  470. "max audio bitrate": 320
  471. }
  472. },
  473. {
  474. "name": "Facebook Live",
  475. "common": true,
  476. "stream_key_link": "https://www.facebook.com/live/producer?ref=OBS",
  477. "servers": [
  478. {
  479. "name": "Default",
  480. "url": "rtmps://rtmp-api.facebook.com:443/rtmp/"
  481. }
  482. ],
  483. "recommended": {
  484. "keyint": 2,
  485. "profile": "main",
  486. "supported resolutions": [
  487. "1920x1080",
  488. "1280x720",
  489. "852x480",
  490. "640x360"
  491. ],
  492. "bitrate matrix": [
  493. {
  494. "res": "640x360",
  495. "fps": 30,
  496. "max bitrate": 1000
  497. },
  498. {
  499. "res": "640x360",
  500. "fps": 60,
  501. "max bitrate": 1500
  502. },
  503. {
  504. "res": "852x480",
  505. "fps": 30,
  506. "max bitrate": 2000
  507. },
  508. {
  509. "res": "852x480",
  510. "fps": 60,
  511. "max bitrate": 3000
  512. },
  513. {
  514. "res": "1280x720",
  515. "fps": 30,
  516. "max bitrate": 4000
  517. },
  518. {
  519. "res": "1280x720",
  520. "fps": 60,
  521. "max bitrate": 6000
  522. },
  523. {
  524. "res": "1920x1080",
  525. "fps": 30,
  526. "max bitrate": 6000
  527. },
  528. {
  529. "res": "1920x1080",
  530. "fps": 60,
  531. "max bitrate": 9000
  532. }
  533. ],
  534. "max fps": 60,
  535. "max video bitrate": 9000,
  536. "max audio bitrate": 128
  537. }
  538. },
  539. {
  540. "name": "Restream.io",
  541. "alt_names": [
  542. "Restream.io - RTMP",
  543. "Restream.io - FTL"
  544. ],
  545. "common": true,
  546. "stream_key_link": "https://restream.io/settings/streaming-setup?from=OBS",
  547. "servers": [
  548. {
  549. "name": "Autodetect",
  550. "url": "rtmp://live.restream.io/live"
  551. },
  552. {
  553. "name": "EU-West (London, GB)",
  554. "url": "rtmp://london.restream.io/live"
  555. },
  556. {
  557. "name": "EU-West (Amsterdam, NL)",
  558. "url": "rtmp://amsterdam.restream.io/live"
  559. },
  560. {
  561. "name": "EU-West (Luxembourg)",
  562. "url": "rtmp://luxembourg.restream.io/live"
  563. },
  564. {
  565. "name": "EU-West (Paris, FR)",
  566. "url": "rtmp://paris.restream.io/live"
  567. },
  568. {
  569. "name": "EU-West (Milan, IT)",
  570. "url": "rtmp://milan.restream.io/live"
  571. },
  572. {
  573. "name": "EU-Central (Frankfurt, DE)",
  574. "url": "rtmp://frankfurt.restream.io/live"
  575. },
  576. {
  577. "name": "EU-East (Falkenstein, DE)",
  578. "url": "rtmp://falkenstein.restream.io/live"
  579. },
  580. {
  581. "name": "EU-East (Prague, Czech)",
  582. "url": "rtmp://prague.restream.io/live"
  583. },
  584. {
  585. "name": "EU-South (Madrid, Spain)",
  586. "url": "rtmp://madrid.restream.io/live"
  587. },
  588. {
  589. "name": "Russia (Moscow)",
  590. "url": "rtmp://moscow.restream.io/live"
  591. },
  592. {
  593. "name": "Turkey (Istanbul)",
  594. "url": "rtmp://istanbul.restream.io/live"
  595. },
  596. {
  597. "name": "Israel (Tel Aviv)",
  598. "url": "rtmp://telaviv.restream.io/live"
  599. },
  600. {
  601. "name": "US-West (Seattle, WA)",
  602. "url": "rtmp://seattle.restream.io/live"
  603. },
  604. {
  605. "name": "US-West (San Jose, CA)",
  606. "url": "rtmp://sanjose.restream.io/live"
  607. },
  608. {
  609. "name": "US-Central (Dallas, TX)",
  610. "url": "rtmp://dallas.restream.io/live"
  611. },
  612. {
  613. "name": "US-East (Washington, DC)",
  614. "url": "rtmp://washington.restream.io/live"
  615. },
  616. {
  617. "name": "US-East (Miami, FL)",
  618. "url": "rtmp://miami.restream.io/live"
  619. },
  620. {
  621. "name": "US-East (Chicago, IL)",
  622. "url": "rtmp://chicago.restream.io/live"
  623. },
  624. {
  625. "name": "NA-East (Toronto, Canada)",
  626. "url": "rtmp://toronto.restream.io/live"
  627. },
  628. {
  629. "name": "SA (Saint Paul, Brazil)",
  630. "url": "rtmp://saopaulo.restream.io/live"
  631. },
  632. {
  633. "name": "India (Bangalore)",
  634. "url": "rtmp://bangalore.restream.io/live"
  635. },
  636. {
  637. "name": "Asia (Singapore)",
  638. "url": "rtmp://singapore.restream.io/live"
  639. },
  640. {
  641. "name": "Asia (Seoul, South Korea)",
  642. "url": "rtmp://seoul.restream.io/live"
  643. },
  644. {
  645. "name": "Asia (Tokyo, Japan)",
  646. "url": "rtmp://tokyo.restream.io/live"
  647. },
  648. {
  649. "name": "Australia (Sydney)",
  650. "url": "rtmp://sydney.restream.io/live"
  651. }
  652. ],
  653. "recommended": {
  654. "keyint": 2
  655. }
  656. },
  657. {
  658. "name": "Castr.io",
  659. "servers": [
  660. {
  661. "name": "US-East (Chicago, IL)",
  662. "url": "rtmp://cg.castr.io/static"
  663. },
  664. {
  665. "name": "US-East (New York, NY)",
  666. "url": "rtmp://ny.castr.io/static"
  667. },
  668. {
  669. "name": "US-East (Miami, FL)",
  670. "url": "rtmp://mi.castr.io/static"
  671. },
  672. {
  673. "name": "US-West (Seattle, WA)",
  674. "url": "rtmp://se.castr.io/static"
  675. },
  676. {
  677. "name": "US-West (Los Angeles, CA)",
  678. "url": "rtmp://la.castr.io/static"
  679. },
  680. {
  681. "name": "US-Central (Dallas, TX)",
  682. "url": "rtmp://da.castr.io/static"
  683. },
  684. {
  685. "name": "NA-East (Toronto, CA)",
  686. "url": "rtmp://qc.castr.io/static"
  687. },
  688. {
  689. "name": "SA (Sao Paulo, BR)",
  690. "url": "rtmp://br.castr.io/static"
  691. },
  692. {
  693. "name": "EU-West (London, UK)",
  694. "url": "rtmp://uk.castr.io/static"
  695. },
  696. {
  697. "name": "EU-Central (Frankfurt, DE)",
  698. "url": "rtmp://fr.castr.io/static"
  699. },
  700. {
  701. "name": "Russia (Moscow)",
  702. "url": "rtmp://ru.castr.io/static"
  703. },
  704. {
  705. "name": "Asia (Singapore)",
  706. "url": "rtmp://sg.castr.io/static"
  707. },
  708. {
  709. "name": "Asia (India)",
  710. "url": "rtmp://in.castr.io/static"
  711. },
  712. {
  713. "name": "Australia (Sydney)",
  714. "url": "rtmp://au.castr.io/static"
  715. },
  716. {
  717. "name": "US Central",
  718. "url": "rtmp://us-central.castr.io/static"
  719. },
  720. {
  721. "name": "US West",
  722. "url": "rtmp://us-west.castr.io/static"
  723. },
  724. {
  725. "name": "US East",
  726. "url": "rtmp://us-east.castr.io/static"
  727. },
  728. {
  729. "name": "US South",
  730. "url": "rtmp://us-south.castr.io/static"
  731. },
  732. {
  733. "name": "South America",
  734. "url": "rtmp://south-am.castr.io/static"
  735. },
  736. {
  737. "name": "EU Central",
  738. "url": "rtmp://eu-central.castr.io/static"
  739. },
  740. {
  741. "name": "Singapore",
  742. "url": "rtmp://sg-central.castr.io/static"
  743. }
  744. ],
  745. "recommended": {
  746. "keyint": 2
  747. }
  748. },
  749. {
  750. "name": "Boomstream",
  751. "servers": [
  752. {
  753. "name": "Default",
  754. "url": "rtmp://live.boomstream.com/live"
  755. }
  756. ]
  757. },
  758. {
  759. "name": "Meridix Live Sports Platform",
  760. "servers": [
  761. {
  762. "name": "Primary",
  763. "url": "rtmp://publish.meridix.com/live"
  764. }
  765. ],
  766. "recommended": {
  767. "max video bitrate": 3500
  768. }
  769. },
  770. {
  771. "name": "AfreecaTV",
  772. "alt_names": [
  773. "아프리카TV",
  774. "Afreeca.TV"
  775. ],
  776. "servers": [
  777. {
  778. "name": "Asia : Korea",
  779. "url": "rtmp://rtmpmanager-freecat.afreeca.tv/app"
  780. },
  781. {
  782. "name": "North America : US East",
  783. "url": "rtmp://rtmp-esu.afreecatv.com/app"
  784. },
  785. {
  786. "name": "North America : US West",
  787. "url": "rtmp://rtmp-wsu.afreecatv.com/app"
  788. },
  789. {
  790. "name": "South America : Brazil",
  791. "url": "rtmp://rtmp-brz.afreecatv.com/app"
  792. },
  793. {
  794. "name": "Europe : UK",
  795. "url": "rtmp://rtmp-uk.afreecatv.com/app"
  796. },
  797. {
  798. "name": "Asia : Singapore",
  799. "url": "rtmp://rtmp-sgp.afreecatv.com/app"
  800. }
  801. ],
  802. "recommended": {
  803. "keyint": 2,
  804. "profile": "main",
  805. "max video bitrate": 8000,
  806. "max audio bitrate": 192
  807. }
  808. },
  809. {
  810. "name": "CAM4",
  811. "servers": [
  812. {
  813. "name": "CAM4",
  814. "url": "rtmp://origin.cam4.com/cam4-origin-live"
  815. }
  816. ],
  817. "recommended": {
  818. "keyint": 1,
  819. "profile": "baseline",
  820. "max video bitrate": 3000,
  821. "max audio bitrate": 128
  822. }
  823. },
  824. {
  825. "name": "ePlay",
  826. "servers": [
  827. {
  828. "name": "ePlay Primary",
  829. "url": "rtmp://live.eplay.link/origin"
  830. }
  831. ],
  832. "recommended": {
  833. "keyint": 2,
  834. "profile": "main",
  835. "max video bitrate": 7500,
  836. "max audio bitrate": 192
  837. }
  838. },
  839. {
  840. "name": "Picarto",
  841. "servers": [
  842. {
  843. "name": "Autoselect closest server",
  844. "url": "rtmp://live.us.picarto.tv/golive"
  845. },
  846. {
  847. "name": "Los Angeles, USA",
  848. "url": "rtmp://live.us-losangeles.picarto.tv/golive"
  849. },
  850. {
  851. "name": "Dallas, USA",
  852. "url": "rtmp://live.us-dallas.picarto.tv/golive"
  853. },
  854. {
  855. "name": "Miami, USA",
  856. "url": "rtmp://live.us-miami.picarto.tv/golive"
  857. },
  858. {
  859. "name": "New York, USA",
  860. "url": "rtmp://live.us-newyork.picarto.tv/golive"
  861. },
  862. {
  863. "name": "Europe",
  864. "url": "rtmp://live.eu-west1.picarto.tv/golive"
  865. }
  866. ],
  867. "recommended": {
  868. "keyint": 2,
  869. "profile": "main",
  870. "max video bitrate": 3500
  871. }
  872. },
  873. {
  874. "name": "Livestream",
  875. "servers": [
  876. {
  877. "name": "Primary",
  878. "url": "rtmp://rtmpin.livestreamingest.com/rtmpin"
  879. }
  880. ]
  881. },
  882. {
  883. "name": "Uscreen",
  884. "servers": [
  885. {
  886. "name": "Default",
  887. "url": "rtmp://global-live.uscreen.app:5222/app"
  888. }
  889. ],
  890. "recommended": {
  891. "keyint": 2,
  892. "max video bitrate": 8000,
  893. "max audio bitrate": 192
  894. }
  895. },
  896. {
  897. "name": "Stripchat",
  898. "servers": [
  899. {
  900. "name": "Auto",
  901. "url": "rtmp://s-sd.doppiocdn.com/ext"
  902. }
  903. ],
  904. "recommended": {
  905. "keyint": 2,
  906. "profile": "main",
  907. "bframes": 0,
  908. "max video bitrate": 6000,
  909. "max audio bitrate": 128,
  910. "x264opts": "tune=zerolatency"
  911. }
  912. },
  913. {
  914. "name": "CamSoda",
  915. "servers": [
  916. {
  917. "name": "North America",
  918. "url": "rtmp://obs-ingest-na.livemediahost.com/cam_obs"
  919. },
  920. {
  921. "name": "South America",
  922. "url": "rtmp://obs-ingest-sa.livemediahost.com/cam_obs"
  923. },
  924. {
  925. "name": "Asia",
  926. "url": "rtmp://obs-ingest-as.livemediahost.com/cam_obs"
  927. },
  928. {
  929. "name": "Europe",
  930. "url": "rtmp://obs-ingest-eu.livemediahost.com/cam_obs"
  931. },
  932. {
  933. "name": "Oceania",
  934. "url": "rtmp://obs-ingest-oc.livemediahost.com/cam_obs"
  935. }
  936. ],
  937. "recommended": {
  938. "supported resolutions": [
  939. "1920x1080",
  940. "1280x720",
  941. "852x480",
  942. "480x360"
  943. ],
  944. "max fps": 30,
  945. "max video bitrate": 6000,
  946. "max audio bitrate": 160,
  947. "x264opts": "tune=zerolatency"
  948. }
  949. },
  950. {
  951. "name": "Chaturbate",
  952. "servers": [
  953. {
  954. "name": "Global Main Fastest - Recommended",
  955. "url": "rtmp://live.stream.highwebmedia.com/live-origin"
  956. },
  957. {
  958. "name": "Global Backup",
  959. "url": "rtmp://live-backup.stream.highwebmedia.com/live-origin"
  960. },
  961. {
  962. "name": "US West: Seattle, WA",
  963. "url": "rtmp://live-sea.stream.highwebmedia.com/live-origin"
  964. },
  965. {
  966. "name": "US West: Phoenix, AZ",
  967. "url": "rtmp://live-phx.stream.highwebmedia.com/live-origin"
  968. },
  969. {
  970. "name": "US Central: Salt Lake City, UT",
  971. "url": "rtmp://live-slc.stream.highwebmedia.com/live-origin"
  972. },
  973. {
  974. "name": "US Central: Chicago, IL",
  975. "url": "rtmp://live-chi.stream.highwebmedia.com/live-origin"
  976. },
  977. {
  978. "name": "US East: Atlanta, GA",
  979. "url": "rtmp://live-atl.stream.highwebmedia.com/live-origin"
  980. },
  981. {
  982. "name": "US East: Ashburn, VA",
  983. "url": "rtmp://live-ash.stream.highwebmedia.com/live-origin"
  984. },
  985. {
  986. "name": "South America: Sao Paulo, Brazil",
  987. "url": "rtmp://live-gru.stream.highwebmedia.com/live-origin"
  988. },
  989. {
  990. "name": "EU: Amsterdam, NL",
  991. "url": "rtmp://live-nld.stream.highwebmedia.com/live-origin"
  992. },
  993. {
  994. "name": "EU: Alblasserdam, NL",
  995. "url": "rtmp://live-alb.stream.highwebmedia.com/live-origin"
  996. },
  997. {
  998. "name": "EU: Frankfurt, DE",
  999. "url": "rtmp://live-fra.stream.highwebmedia.com/live-origin"
  1000. },
  1001. {
  1002. "name": "EU: Belgrade, Serbia",
  1003. "url": "rtmp://live-srb.stream.highwebmedia.com/live-origin"
  1004. },
  1005. {
  1006. "name": "Asia: Singapore",
  1007. "url": "rtmp://live-sin.stream.highwebmedia.com/live-origin"
  1008. },
  1009. {
  1010. "name": "Asia: Tokyo, Japan",
  1011. "url": "rtmp://live-nrt.stream.highwebmedia.com/live-origin"
  1012. },
  1013. {
  1014. "name": "Australia: Sydney",
  1015. "url": "rtmp://live-syd.stream.highwebmedia.com/live-origin"
  1016. }
  1017. ],
  1018. "recommended": {
  1019. "keyint": 2,
  1020. "max video bitrate": 50000,
  1021. "max audio bitrate": 192
  1022. }
  1023. },
  1024. {
  1025. "name": "WpStream",
  1026. "more_info_link": "https://wpstream.net/obs-more-info",
  1027. "stream_key_link": "https://wpstream.net/obs-get-stream-key",
  1028. "servers": [
  1029. {
  1030. "name": "Closest server - Automatic",
  1031. "url": "rtmp://ingest.wpstream.net/golive"
  1032. },
  1033. {
  1034. "name": "North America",
  1035. "url": "rtmp://ingest-na.wpstream.net/golive"
  1036. },
  1037. {
  1038. "name": "Europe",
  1039. "url": "rtmp://ingest-eu.wpstream.net/golive"
  1040. },
  1041. {
  1042. "name": "Asia",
  1043. "url": "rtmp://ingest-as.wpstream.net/golive"
  1044. },
  1045. {
  1046. "name": "South America",
  1047. "url": "rtmp://ingest-sa.wpstream.net/golive"
  1048. },
  1049. {
  1050. "name": "Australia & Oceania",
  1051. "url": "rtmp://ingest-au.wpstream.net/golive"
  1052. }
  1053. ],
  1054. "recommended": {
  1055. "keyint": 2,
  1056. "max audio bitrate": 160
  1057. }
  1058. },
  1059. {
  1060. "name": "Twitter",
  1061. "common": true,
  1062. "stream_key_link": "https://studio.twitter.com/producer/sources",
  1063. "alt_names": [
  1064. "Twitter / Periscope"
  1065. ],
  1066. "servers": [
  1067. {
  1068. "name": "US West: California",
  1069. "url": "rtmp://ca.pscp.tv:80/x"
  1070. },
  1071. {
  1072. "name": "US West: Oregon",
  1073. "url": "rtmp://or.pscp.tv:80/x"
  1074. },
  1075. {
  1076. "name": "US East: Virginia",
  1077. "url": "rtmp://va.pscp.tv:80/x"
  1078. },
  1079. {
  1080. "name": "South America: Brazil",
  1081. "url": "rtmp://br.pscp.tv:80/x"
  1082. },
  1083. {
  1084. "name": "EU West: France",
  1085. "url": "rtmp://fr.pscp.tv:80/x"
  1086. },
  1087. {
  1088. "name": "EU West: Ireland",
  1089. "url": "rtmp://ie.pscp.tv:80/x"
  1090. },
  1091. {
  1092. "name": "EU Central: Germany",
  1093. "url": "rtmp://de.pscp.tv:80/x"
  1094. },
  1095. {
  1096. "name": "Asia/Pacific: Australia",
  1097. "url": "rtmp://au.pscp.tv:80/x"
  1098. },
  1099. {
  1100. "name": "Asia/Pacific: India",
  1101. "url": "rtmp://in.pscp.tv:80/x"
  1102. },
  1103. {
  1104. "name": "Asia/Pacific: Japan",
  1105. "url": "rtmp://jp.pscp.tv:80/x"
  1106. },
  1107. {
  1108. "name": "Asia/Pacific: Korea",
  1109. "url": "rtmp://kr.pscp.tv:80/x"
  1110. },
  1111. {
  1112. "name": "Asia/Pacific: Singapore",
  1113. "url": "rtmp://sg.pscp.tv:80/x"
  1114. }
  1115. ],
  1116. "recommended": {
  1117. "keyint": 3,
  1118. "max video bitrate": 12000,
  1119. "max audio bitrate": 128,
  1120. "max fps": 60
  1121. }
  1122. },
  1123. {
  1124. "name": "Switchboard Live",
  1125. "alt_names": [
  1126. "Switchboard Live (Joicaster)"
  1127. ],
  1128. "servers": [
  1129. {
  1130. "name": "Global Zone (geo based)",
  1131. "url": "rtmp://ingest-global.switchboard.zone/live"
  1132. },
  1133. {
  1134. "name": "US Zone (geo based)",
  1135. "url": "rtmp://ingest-us.switchboard.zone/live"
  1136. },
  1137. {
  1138. "name": "US West",
  1139. "url": "rtmp://ingest-us-west.switchboard.zone/live"
  1140. },
  1141. {
  1142. "name": "US East",
  1143. "url": "rtmp://ingest-us-east.switchboard.zone/live"
  1144. },
  1145. {
  1146. "name": "US Central",
  1147. "url": "rtmp://ingest-us-central.switchboard.zone/live"
  1148. },
  1149. {
  1150. "name": "South America",
  1151. "url": "rtmp://ingest-sa.switchboard.zone/live"
  1152. },
  1153. {
  1154. "name": "EU (auto)",
  1155. "url": "rtmp://ingest-eu.switchboard.zone/live"
  1156. },
  1157. {
  1158. "name": "Australia",
  1159. "url": "rtmp://ingest-au.switchboard.zone/live"
  1160. },
  1161. {
  1162. "name": "APAC (auto)",
  1163. "url": "rtmp://ingest-asia.switchboard.zone/live"
  1164. },
  1165. {
  1166. "name": "UK",
  1167. "url": "rtmp://ingest-uk.switchboard.zone/live"
  1168. }
  1169. ],
  1170. "recommended": {
  1171. "keyint": 2,
  1172. "profile": "high",
  1173. "max audio bitrate": 160,
  1174. "max video bitrate": 6000
  1175. }
  1176. },
  1177. {
  1178. "name": "Looch",
  1179. "common": false,
  1180. "servers": [
  1181. {
  1182. "name": "Primary Looch ingest server",
  1183. "url": "rtmp://ingest.looch.tv/live"
  1184. }
  1185. ],
  1186. "recommended": {
  1187. "keyint": 2,
  1188. "profile": "main",
  1189. "max video bitrate": 6000,
  1190. "max audio bitrate": 160
  1191. }
  1192. },
  1193. {
  1194. "name": "Eventials",
  1195. "servers": [
  1196. {
  1197. "name": "Default",
  1198. "url": "rtmp://transmission.eventials.com/eventialsLiveOrigin"
  1199. }
  1200. ],
  1201. "recommended": {
  1202. "keyint": 1,
  1203. "profile": "baseline",
  1204. "max video bitrate": 900,
  1205. "max audio bitrate": 96
  1206. }
  1207. },
  1208. {
  1209. "name": "EventLive.pro",
  1210. "servers": [
  1211. {
  1212. "name": "Default",
  1213. "url": "rtmp://go.eventlive.pro/live"
  1214. }
  1215. ],
  1216. "recommended": {
  1217. "keyint": 2,
  1218. "max video bitrate": 3000,
  1219. "max audio bitrate": 192,
  1220. "supported resolutions": [
  1221. "1920x1080",
  1222. "1280x720"
  1223. ],
  1224. "max fps": 30
  1225. }
  1226. },
  1227. {
  1228. "name": "Lahzenegar - StreamG | لحظه‌نگار - استریمجی",
  1229. "servers": [
  1230. {
  1231. "name": "Primary",
  1232. "url": "rtmp://rtmp.lahzecdn.com/pro"
  1233. },
  1234. {
  1235. "name": "Iran",
  1236. "url": "rtmp://rtmp-iran.lahzecdn.com/pro"
  1237. }
  1238. ],
  1239. "recommended": {
  1240. "keyint": 2,
  1241. "profile": "main",
  1242. "max video bitrate": 4000,
  1243. "max audio bitrate": 192
  1244. }
  1245. },
  1246. {
  1247. "name": "MyLive",
  1248. "servers": [
  1249. {
  1250. "name": "Default",
  1251. "url": "rtmp://stream.mylive.in.th/live"
  1252. }
  1253. ],
  1254. "recommended": {
  1255. "keyint": 2,
  1256. "profile": "main",
  1257. "max video bitrate": 7000,
  1258. "max audio bitrate": 192
  1259. }
  1260. },
  1261. {
  1262. "name": "Trovo",
  1263. "alt_names": [
  1264. "Madcat"
  1265. ],
  1266. "stream_key_link": "https://studio.trovo.live/mychannel/stream",
  1267. "servers": [
  1268. {
  1269. "name": "Default",
  1270. "url": "rtmp://livepush.trovo.live/live/"
  1271. }
  1272. ],
  1273. "recommended": {
  1274. "keyint": 2,
  1275. "max video bitrate": 9000,
  1276. "max audio bitrate": 160,
  1277. "x264opts": "scenecut=0"
  1278. }
  1279. },
  1280. {
  1281. "name": "Mixcloud",
  1282. "servers": [
  1283. {
  1284. "name": "Default",
  1285. "url": "rtmp://rtmp.mixcloud.com/broadcast"
  1286. }
  1287. ],
  1288. "recommended": {
  1289. "keyint": 2,
  1290. "max video bitrate": 6000,
  1291. "max audio bitrate": 320,
  1292. "supported resolutions": [
  1293. "1280x720",
  1294. "852x480",
  1295. "480x360"
  1296. ],
  1297. "max fps": 30,
  1298. "x264opts": "scenecut=0"
  1299. }
  1300. },
  1301. {
  1302. "name": "SermonAudio Cloud",
  1303. "alt_names": [
  1304. "SermonAudio.com"
  1305. ],
  1306. "servers": [
  1307. {
  1308. "name": "Primary",
  1309. "url": "rtmp://webcast.sermonaudio.com/sa"
  1310. }
  1311. ],
  1312. "recommended": {
  1313. "max video bitrate": 2000,
  1314. "max audio bitrate": 128
  1315. }
  1316. },
  1317. {
  1318. "name": "Vimeo",
  1319. "servers": [
  1320. {
  1321. "name": "Default",
  1322. "url": "rtmp://rtmp.cloud.vimeo.com/live"
  1323. }
  1324. ]
  1325. },
  1326. {
  1327. "name": "Aparat",
  1328. "servers": [
  1329. {
  1330. "name": "Default",
  1331. "url": "rtmp://rtmp.cdn.asset.aparat.com:443/event"
  1332. }
  1333. ],
  1334. "recommended": {
  1335. "keyint": 2,
  1336. "max video bitrate": 6000,
  1337. "max audio bitrate": 320,
  1338. "x264opts": "scenecut=0"
  1339. }
  1340. },
  1341. {
  1342. "name": "KakaoTV",
  1343. "servers": [
  1344. {
  1345. "name": "Default",
  1346. "url": "rtmp://rtmp.play.kakao.com/kakaotv"
  1347. }
  1348. ],
  1349. "recommended": {
  1350. "max video bitrate": 8000,
  1351. "max audio bitrate": 192
  1352. }
  1353. },
  1354. {
  1355. "name": "Piczel.tv",
  1356. "servers": [
  1357. {
  1358. "name": "Default",
  1359. "url": "rtmp://piczel.tv:1935/live"
  1360. }
  1361. ],
  1362. "recommended": {
  1363. "keyint": 4,
  1364. "max video bitrate": 2500,
  1365. "max audio bitrate": 256,
  1366. "x264opts": "tune=zerolatency"
  1367. }
  1368. },
  1369. {
  1370. "name": "STAGE TEN",
  1371. "servers": [
  1372. {
  1373. "name": "STAGE TEN",
  1374. "url": "rtmps://app-rtmp.stageten.tv:443/stageten"
  1375. }
  1376. ],
  1377. "recommended": {
  1378. "keyint": 2,
  1379. "profile": "baseline",
  1380. "max video bitrate": 4000,
  1381. "max audio bitrate": 128
  1382. }
  1383. },
  1384. {
  1385. "name": "DLive",
  1386. "servers": [
  1387. {
  1388. "name": "Default",
  1389. "url": "rtmp://stream.dlive.tv/live"
  1390. }
  1391. ],
  1392. "recommended": {
  1393. "keyint": 2,
  1394. "max video bitrate": 6000,
  1395. "max audio bitrate": 160
  1396. }
  1397. },
  1398. {
  1399. "name": "Lightcast.com",
  1400. "servers": [
  1401. {
  1402. "name": "North America / East",
  1403. "url": "rtmp://us-east.live.lightcast.com/202E1F/default"
  1404. },
  1405. {
  1406. "name": "North America / West",
  1407. "url": "rtmp://us-west.live.lightcast.com/202E1F/default"
  1408. },
  1409. {
  1410. "name": "Europe / Amsterdam",
  1411. "url": "rtmp://europe.live.lightcast.com/202E1F/default"
  1412. },
  1413. {
  1414. "name": "Europe / Frankfurt",
  1415. "url": "rtmp://europe-fra.live.lightcast.com/202E1F/default"
  1416. },
  1417. {
  1418. "name": "Europe / Stockholm",
  1419. "url": "rtmp://europe-sto.live.lightcast.com/202E1F/default"
  1420. },
  1421. {
  1422. "name": "Asia / Hong Kong",
  1423. "url": "rtmp://asia.live.lightcast.com/202E1F/default"
  1424. },
  1425. {
  1426. "name": "Australia / Sydney",
  1427. "url": "rtmp://australia.live.lightcast.com/202E1F/default"
  1428. }
  1429. ],
  1430. "recommended": {
  1431. "keyint": 2,
  1432. "max video bitrate": 6000,
  1433. "max audio bitrate": 160
  1434. }
  1435. },
  1436. {
  1437. "name": "Bongacams",
  1438. "servers": [
  1439. {
  1440. "name": "Automatic / Default",
  1441. "url": "rtmp://auto.origin.gnsbc.com:1934/live"
  1442. },
  1443. {
  1444. "name": "Automatic / Backup",
  1445. "url": "rtmp://origin.bcvidorigin.com:1934/live"
  1446. },
  1447. {
  1448. "name": "Europe",
  1449. "url": "rtmp://z-eu.origin.gnsbc.com:1934/live"
  1450. },
  1451. {
  1452. "name": "North America",
  1453. "url": "rtmp://z-us.origin.gnsbc.com:1934/live"
  1454. }
  1455. ],
  1456. "recommended": {
  1457. "keyint": 2,
  1458. "max video bitrate": 6000,
  1459. "max audio bitrate": 192,
  1460. "bframes": 0,
  1461. "x264opts": "tune=zerolatency"
  1462. }
  1463. },
  1464. {
  1465. "name": "Chathostess",
  1466. "servers": [
  1467. {
  1468. "name": "Chathostess - Backup",
  1469. "url": "rtmp://wowza05.foobarweb.com/cmschatsys_video"
  1470. }
  1471. ],
  1472. "recommended": {
  1473. "keyint": 2,
  1474. "max video bitrate": 3600,
  1475. "max audio bitrate": 128
  1476. }
  1477. },
  1478. {
  1479. "name": "OnlyFans.com",
  1480. "servers": [
  1481. {
  1482. "name": "USA",
  1483. "url": "rtmp://route0.onlyfans.com/live"
  1484. },
  1485. {
  1486. "name": "Europe",
  1487. "url": "rtmp://route0-dc2.onlyfans.com/live"
  1488. }
  1489. ],
  1490. "recommended": {
  1491. "keyint": 2,
  1492. "profile": "main",
  1493. "max video bitrate": 2500,
  1494. "max audio bitrate": 192,
  1495. "bframes": 0,
  1496. "x264opts": "tune=zerolatency"
  1497. }
  1498. },
  1499. {
  1500. "name": "YouNow",
  1501. "common": false,
  1502. "supported audio codecs": [
  1503. "opus"
  1504. ],
  1505. "servers": [
  1506. {
  1507. "name": "younow.com",
  1508. "url": "https://api.younow.com/php/api/broadcast/ingest?id="
  1509. }
  1510. ],
  1511. "recommended": {
  1512. "keyint": 2,
  1513. "output": "ftl_output",
  1514. "max audio bitrate": 160,
  1515. "max video bitrate": 7000,
  1516. "profile": "main",
  1517. "bframes": 0
  1518. }
  1519. },
  1520. {
  1521. "name": "Steam",
  1522. "common": false,
  1523. "servers": [
  1524. {
  1525. "name": "Default",
  1526. "url": "rtmp://ingest-rtmp.broadcast.steamcontent.com/app"
  1527. }
  1528. ],
  1529. "recommended": {
  1530. "keyint": 2,
  1531. "profile": "high",
  1532. "max video bitrate": 7000,
  1533. "max audio bitrate": 128
  1534. }
  1535. },
  1536. {
  1537. "name": "Konduit.live",
  1538. "servers": [
  1539. {
  1540. "name": "Default",
  1541. "url": "rtmp://rtmp.konduit.live/live"
  1542. }
  1543. ],
  1544. "recommended": {
  1545. "keyint": 2,
  1546. "x264opts": "scenecut=0"
  1547. }
  1548. },
  1549. {
  1550. "name": "LOCO",
  1551. "servers": [
  1552. {
  1553. "name": "Default",
  1554. "url": "rtmp://ivory-ingest.getloconow.com:1935/stream"
  1555. }
  1556. ],
  1557. "recommended": {
  1558. "keyint": 2
  1559. }
  1560. },
  1561. {
  1562. "name": "niconico, premium member (ニコニコ生放送 プレミアム会員)",
  1563. "servers": [
  1564. {
  1565. "name": "Default",
  1566. "url": "rtmp://aliveorigin.dmc.nico/named_input"
  1567. }
  1568. ],
  1569. "recommended": {
  1570. "keyint": 2,
  1571. "profile": "high",
  1572. "max audio bitrate": 192,
  1573. "max video bitrate": 5808,
  1574. "x264opts": "tune=zerolatency"
  1575. }
  1576. },
  1577. {
  1578. "name": "niconico, free member (ニコニコ生放送 一般会員)",
  1579. "servers": [
  1580. {
  1581. "name": "Default",
  1582. "url": "rtmp://aliveorigin.dmc.nico/named_input"
  1583. }
  1584. ],
  1585. "recommended": {
  1586. "keyint": 2,
  1587. "profile": "high",
  1588. "max audio bitrate": 96,
  1589. "max video bitrate": 904,
  1590. "x264opts": "tune=zerolatency"
  1591. }
  1592. },
  1593. {
  1594. "name": "WASD.TV",
  1595. "servers": [
  1596. {
  1597. "name": "Automatic",
  1598. "url": "rtmp://push.rtmp.wasd.tv/live"
  1599. },
  1600. {
  1601. "name": "Russia, Moscow",
  1602. "url": "rtmp://ru-moscow.rtmp.wasd.tv/live"
  1603. },
  1604. {
  1605. "name": "Germany, Frankfurt",
  1606. "url": "rtmp://de-frankfurt.rtmp.wasd.tv/live"
  1607. },
  1608. {
  1609. "name": "Finland, Helsinki",
  1610. "url": "rtmp://fi-helsinki.rtmp.wasd.tv/live"
  1611. }
  1612. ],
  1613. "recommended": {
  1614. "keyint": 2,
  1615. "max video bitrate": 10000,
  1616. "max audio bitrate": 192
  1617. }
  1618. },
  1619. {
  1620. "name": "Nimo TV",
  1621. "servers": [
  1622. {
  1623. "name": "Global:1",
  1624. "url": "rtmp://wspush.rtmp.nimo.tv/live/"
  1625. },
  1626. {
  1627. "name": "Global:2",
  1628. "url": "rtmp://txpush.rtmp.nimo.tv/live/"
  1629. },
  1630. {
  1631. "name": "Global:3",
  1632. "url": "rtmp://alpush.rtmp.nimo.tv/live/"
  1633. }
  1634. ],
  1635. "recommended": {
  1636. "keyint": 2,
  1637. "max video bitrate": 6000,
  1638. "max audio bitrate": 160
  1639. }
  1640. },
  1641. {
  1642. "name": "XLoveCam.com",
  1643. "servers": [
  1644. {
  1645. "name": "Europe(main)",
  1646. "url": "rtmp://nl.eu.stream.xlove.com/performer-origin"
  1647. },
  1648. {
  1649. "name": "Europe(Romania)",
  1650. "url": "rtmp://ro.eu.stream.xlove.com/performer-origin"
  1651. },
  1652. {
  1653. "name": "Europe(Russia)",
  1654. "url": "rtmp://ru.eu.stream.xlove.com/performer-origin"
  1655. },
  1656. {
  1657. "name": "North America(US East)",
  1658. "url": "rtmp://usec.na.stream.xlove.com/performer-origin"
  1659. },
  1660. {
  1661. "name": "North America(US West)",
  1662. "url": "rtmp://uswc.na.stream.xlove.com/performer-origin"
  1663. },
  1664. {
  1665. "name": "North America(Canada)",
  1666. "url": "rtmp://ca.na.stream.xlove.com/performer-origin"
  1667. },
  1668. {
  1669. "name": "South America",
  1670. "url": "rtmp://co.sa.stream.xlove.com/performer-origin"
  1671. },
  1672. {
  1673. "name": "Asia",
  1674. "url": "rtmp://sg.as.stream.xlove.com/performer-origin"
  1675. }
  1676. ],
  1677. "recommended": {
  1678. "x264opts": "scenecut=0"
  1679. }
  1680. },
  1681. {
  1682. "name": "AngelThump",
  1683. "servers": [
  1684. {
  1685. "name": "Auto",
  1686. "url": "rtmp://ingest.angelthump.com/live"
  1687. },
  1688. {
  1689. "name": "New York 3",
  1690. "url": "rtmp://nyc-ingest.angelthump.com:1935/live"
  1691. },
  1692. {
  1693. "name": "San Francisco 2",
  1694. "url": "rtmp://sfo-ingest.angelthump.com:1935/live"
  1695. },
  1696. {
  1697. "name": "Singapore 1",
  1698. "url": "rtmp://sgp-ingest.angelthump.com:1935/live"
  1699. },
  1700. {
  1701. "name": "London 1",
  1702. "url": "rtmp://lon-ingest.angelthump.com:1935/live"
  1703. },
  1704. {
  1705. "name": "Frankfurt 1",
  1706. "url": "rtmp://fra-ingest.angelthump.com:1935/live"
  1707. },
  1708. {
  1709. "name": "Toronto 1",
  1710. "url": "rtmp://tor-ingest.angelthump.com:1935/live"
  1711. },
  1712. {
  1713. "name": "Bangalore 1",
  1714. "url": "rtmp://blr-ingest.angelthump.com:1935/live"
  1715. },
  1716. {
  1717. "name": "Amsterdam 3",
  1718. "url": "rtmp://ams-ingest.angelthump.com:1935/live"
  1719. }
  1720. ],
  1721. "recommended": {
  1722. "keyint": 2,
  1723. "profile": "high",
  1724. "max video bitrate": 3500,
  1725. "max audio bitrate": 160
  1726. }
  1727. },
  1728. {
  1729. "name": "api.video",
  1730. "servers": [
  1731. {
  1732. "name": "Default",
  1733. "url": "rtmp://broadcast.api.video/s"
  1734. }
  1735. ],
  1736. "recommended": {
  1737. "keyint": 2,
  1738. "max video bitrate": 20000,
  1739. "max audio bitrate": 192
  1740. }
  1741. },
  1742. {
  1743. "name": "SHOWROOM",
  1744. "servers": [
  1745. {
  1746. "name": "Default",
  1747. "url": "https://www.showroom-live.com/api/obs/streaming_info?obs_key="
  1748. }
  1749. ],
  1750. "recommended": {
  1751. "keyint": 2,
  1752. "profile": "main",
  1753. "max video bitrate": 1500,
  1754. "max audio bitrate": 160,
  1755. "x264opts": "tune=zerolatency"
  1756. }
  1757. },
  1758. {
  1759. "name": "Mux",
  1760. "servers": [
  1761. {
  1762. "name": "Global (RTMPS)",
  1763. "url": "rtmps://global-live.mux.com:443/app"
  1764. },
  1765. {
  1766. "name": "Global (RTMP)",
  1767. "url": "rtmp://global-live.mux.com:5222/app"
  1768. }
  1769. ],
  1770. "recommended": {
  1771. "keyint": 2,
  1772. "max video bitrate": 5000,
  1773. "max audio bitrate": 160
  1774. }
  1775. },
  1776. {
  1777. "name": "Viloud",
  1778. "servers": [
  1779. {
  1780. "name": "Default",
  1781. "url": "rtmp://live.viloud.tv:5222/app"
  1782. }
  1783. ],
  1784. "recommended": {
  1785. "keyint": 2,
  1786. "max video bitrate": 5000,
  1787. "max audio bitrate": 160
  1788. }
  1789. },
  1790. {
  1791. "name": "MyFreeCams",
  1792. "servers": [
  1793. {
  1794. "name": "Automatic",
  1795. "url": "rtmp://publish.myfreecams.com/NxServer"
  1796. },
  1797. {
  1798. "name": "Australia",
  1799. "url": "rtmp://publish-syd.myfreecams.com/NxServer"
  1800. },
  1801. {
  1802. "name": "East Asia",
  1803. "url": "rtmp://publish-tyo.myfreecams.com/NxServer"
  1804. },
  1805. {
  1806. "name": "Europe (East)",
  1807. "url": "rtmp://publish-buh.myfreecams.com/NxServer"
  1808. },
  1809. {
  1810. "name": "Europe (West)",
  1811. "url": "rtmp://publish-ams.myfreecams.com/NxServer"
  1812. },
  1813. {
  1814. "name": "North America (East Coast)",
  1815. "url": "rtmp://publish-ord.myfreecams.com/NxServer"
  1816. },
  1817. {
  1818. "name": "North America (West Coast)",
  1819. "url": "rtmp://publish-tuk.myfreecams.com/NxServer"
  1820. },
  1821. {
  1822. "name": "South America",
  1823. "url": "rtmp://publish-sao.myfreecams.com/NxServer"
  1824. }
  1825. ],
  1826. "recommended": {
  1827. "keyint": 1,
  1828. "profile": "high",
  1829. "max fps": 60,
  1830. "max video bitrate": 10000,
  1831. "max audio bitrate": 192,
  1832. "x264opts": "tune=zerolatency scenecut=0"
  1833. }
  1834. },
  1835. {
  1836. "name": "PolyStreamer.com",
  1837. "servers": [
  1838. {
  1839. "name": "Auto-select closest server",
  1840. "url": "rtmp://live.polystreamer.com/live"
  1841. },
  1842. {
  1843. "name": "United States - West",
  1844. "url": "rtmp://us-west.live.polystreamer.com/live"
  1845. },
  1846. {
  1847. "name": "United States - East",
  1848. "url": "rtmp://us-east.live.polystreamer.com/live"
  1849. },
  1850. {
  1851. "name": "Australia",
  1852. "url": "rtmp://aus.live.polystreamer.com/live"
  1853. },
  1854. {
  1855. "name": "India",
  1856. "url": "rtmp://ind.live.polystreamer.com/live"
  1857. },
  1858. {
  1859. "name": "Germany",
  1860. "url": "rtmp://deu.live.polystreamer.com/live"
  1861. },
  1862. {
  1863. "name": "Japan",
  1864. "url": "rtmp://jpn.live.polystreamer.com/live"
  1865. },
  1866. {
  1867. "name": "Singapore",
  1868. "url": "rtmp://sgp.live.polystreamer.com/live"
  1869. }
  1870. ],
  1871. "recommended": {
  1872. "keyint": 2
  1873. }
  1874. },
  1875. {
  1876. "name": "Glimesh",
  1877. "stream_key_link": "https://glimesh.tv/users/settings/stream",
  1878. "supported audio codecs": [
  1879. "opus"
  1880. ],
  1881. "servers": [
  1882. {
  1883. "name": "North America - Chicago, United States",
  1884. "url": "ingest.kord.live.glimesh.tv"
  1885. },
  1886. {
  1887. "name": "North America - New York, United States",
  1888. "url": "ingest.kjfk.live.glimesh.tv"
  1889. },
  1890. {
  1891. "name": "North America - San Francisco, United States",
  1892. "url": "ingest.ksfo.live.glimesh.tv"
  1893. },
  1894. {
  1895. "name": "North America - Toronto, Canada",
  1896. "url": "ingest.cyyz.live.glimesh.tv"
  1897. },
  1898. {
  1899. "name": "Europe - Amsterdam, Netherlands",
  1900. "url": "ingest.eham.live.glimesh.tv"
  1901. },
  1902. {
  1903. "name": "Europe - Frankfurt, Germany",
  1904. "url": "ingest.eddf.live.glimesh.tv"
  1905. },
  1906. {
  1907. "name": "Europe - London, United Kingdom",
  1908. "url": "ingest.egll.live.glimesh.tv"
  1909. },
  1910. {
  1911. "name": "Asia - Bangalore, India",
  1912. "url": "ingest.vobl.live.glimesh.tv"
  1913. },
  1914. {
  1915. "name": "Asia - Singapore",
  1916. "url": "ingest.wsss.live.glimesh.tv"
  1917. }
  1918. ],
  1919. "recommended": {
  1920. "keyint": 2,
  1921. "output": "ftl_output",
  1922. "max audio bitrate": 160,
  1923. "max video bitrate": 6000,
  1924. "bframes": 0,
  1925. "x264opts": "scenecut=0"
  1926. }
  1927. },
  1928. {
  1929. "name": "OPENREC.tv - Premium member (プレミアム会員)",
  1930. "stream_key_link": "https://www.openrec.tv/login?keep_login=true&url=https://www.openrec.tv/dashboard/live?from=obs",
  1931. "servers": [
  1932. {
  1933. "name": "Default",
  1934. "url": "rtmp://a.station.openrec.tv:1935/live1"
  1935. }
  1936. ],
  1937. "recommended": {
  1938. "keyint": 2,
  1939. "max video bitrate": 5000,
  1940. "max audio bitrate": 160
  1941. }
  1942. },
  1943. {
  1944. "name": "nanoStream Cloud / bintu",
  1945. "more_info_link": "https://www.nanocosmos.de/obs",
  1946. "stream_key_link": "https://bintu-cloud-frontend.nanocosmos.de/organisation",
  1947. "servers": [
  1948. {
  1949. "name": "bintu-stream global ingest (rtmp)",
  1950. "url": "rtmp://bintu-stream.nanocosmos.de/live"
  1951. },
  1952. {
  1953. "name": "bintu-stream global ingest (rtmps)",
  1954. "url": "rtmps://bintu-stream.nanocosmos.de:1937/live"
  1955. },
  1956. {
  1957. "name": "bintu-vtrans global ingest with transcoding/ABR (rtmp)",
  1958. "url": "rtmp://bintu-vtrans.nanocosmos.de/live"
  1959. },
  1960. {
  1961. "name": "bintu-vtrans global ingest with transcoding/ABR (rtmps)",
  1962. "url": "rtmps://bintu-vtrans.nanocosmos.de:1937/live"
  1963. },
  1964. {
  1965. "name": "bintu-stream Europe (EU)",
  1966. "url": "rtmp://bintu-stream-eu.nanocosmos.de/live"
  1967. },
  1968. {
  1969. "name": "bintu-stream USA West (USW)",
  1970. "url": "rtmp://bintu-stream-usw.nanocosmos.de/live"
  1971. },
  1972. {
  1973. "name": "bintu-stream US East (USE)",
  1974. "url": "rtmp://bintu-stream-use.nanocosmos.de/live"
  1975. },
  1976. {
  1977. "name": "bintu-stream Asia South (ASS)",
  1978. "url": "rtmp://bintu-stream-ass.nanocosmos.de/live"
  1979. },
  1980. {
  1981. "name": "bintu-stream Australia (AU)",
  1982. "url": "rtmp://bintu-stream-au.nanocosmos.de/live"
  1983. },
  1984. {
  1985. "name": "bintu-vtrans Europe (EU)",
  1986. "url": "rtmp://bintu-vtrans-eu.nanocosmos.de/live"
  1987. },
  1988. {
  1989. "name": "bintu-vtrans USA West (USW)",
  1990. "url": "rtmp://bintu-vtrans-usw.nanocosmos.de/live"
  1991. },
  1992. {
  1993. "name": "bintu-vtrans US East (USE)",
  1994. "url": "rtmp://bintu-vtrans-use.nanocosmos.de/live"
  1995. },
  1996. {
  1997. "name": "bintu-vtrans Asia South (ASS)",
  1998. "url": "rtmp://bintu-vtrans-ass.nanocosmos.de/live"
  1999. },
  2000. {
  2001. "name": "bintu-vtrans Australia (AU)",
  2002. "url": "rtmp://bintu-vtrans-au.nanocosmos.de/live"
  2003. }
  2004. ],
  2005. "recommended": {
  2006. "keyint": 2,
  2007. "profile": "baseline",
  2008. "bframes": 0,
  2009. "max video bitrate": 5000,
  2010. "max audio bitrate": 192,
  2011. "x264opts": "tune=zerolatency b-pyramid=0 scenecut=0"
  2012. }
  2013. },
  2014. {
  2015. "name": "Dacast",
  2016. "servers": [
  2017. {
  2018. "name": "Default",
  2019. "url": "https://developer.dacast.com/v3/encoder-setup/"
  2020. }
  2021. ],
  2022. "recommended": {
  2023. "keyint": 1,
  2024. "profile": "high",
  2025. "max video bitrate": 7000,
  2026. "max audio bitrate": 128
  2027. }
  2028. },
  2029. {
  2030. "name": "Brime Live",
  2031. "stream_key_link": "https://brime.tv/studio",
  2032. "servers": [
  2033. {
  2034. "name": "North America - Ashburn, VA",
  2035. "url": "rtmp://ingest-us-ashburn.brime.tv/live"
  2036. },
  2037. {
  2038. "name": "North America - San Jose, CA",
  2039. "url": "rtmp://ingest-us-sanjose.brime.tv/live"
  2040. },
  2041. {
  2042. "name": "Europe / EMEA - Germany (Frankfurt)",
  2043. "url": "rtmp://ingest-eu-frankfurt.brime.tv/live"
  2044. }
  2045. ],
  2046. "recommended": {
  2047. "max video bitrate": 30000,
  2048. "max audio bitrate": 320,
  2049. "x264opts": "scenecut=0"
  2050. }
  2051. },
  2052. {
  2053. "name": "Bilibili Live - RTMP | 哔哩哔哩直播 - RTMP",
  2054. "more_info_link": "https://link.bilibili.com/p/help/index#/tools-tutorial?id=9",
  2055. "stream_key_link": "https://link.bilibili.com/p/center/index#/my-room/start-live",
  2056. "alt_names": [
  2057. "Bilibili Live"
  2058. ],
  2059. "servers": [
  2060. {
  2061. "name": "Default | 默认",
  2062. "url": "rtmp://live-push.bilivideo.com/live-bvc/"
  2063. }
  2064. ]
  2065. },
  2066. {
  2067. "name": "Volume.com",
  2068. "stream_key_link": "https://volume.com/b?show_key=1&webrtc=0",
  2069. "servers": [
  2070. {
  2071. "name": "Default - Recommended",
  2072. "url": "rtmp://live.volume.com/live-origin"
  2073. },
  2074. {
  2075. "name": "US - West",
  2076. "url": "rtmp://live-pdx.volume.com/live-origin"
  2077. },
  2078. {
  2079. "name": "US - East",
  2080. "url": "rtmp://live-ash.volume.com/live-origin"
  2081. }
  2082. ],
  2083. "recommended": {
  2084. "keyint": 2,
  2085. "max video bitrate": 20000,
  2086. "max fps": 60
  2087. }
  2088. },
  2089. {
  2090. "name": "BoxCast",
  2091. "stream_key_link": "https://dashboard.boxcast.com/#/sources",
  2092. "servers": [
  2093. {
  2094. "name": "BoxCast",
  2095. "url": "rtmp://rtmp.boxcast.com/live"
  2096. }
  2097. ]
  2098. },
  2099. {
  2100. "name": "Disciple Media",
  2101. "servers": [
  2102. {
  2103. "name": "Default",
  2104. "url": "rtmp://rtmp.disciplemedia.com/b-fme"
  2105. }
  2106. ]
  2107. },
  2108. {
  2109. "name": "Jio Games",
  2110. "servers": [
  2111. {
  2112. "name": "Primary",
  2113. "url": "rtmp://livepub1.api.engageapps.jio/live"
  2114. },
  2115. {
  2116. "name": "Secondary",
  2117. "url": "rtmp://livepub2.api.engageapps.jio/live"
  2118. }
  2119. ],
  2120. "recommended": {
  2121. "keyint": 2,
  2122. "max video bitrate": 32000,
  2123. "max audio bitrate": 256
  2124. }
  2125. },
  2126. {
  2127. "name": "Kuaishou Live",
  2128. "stream_key_link": "https://studio.kuaishou.com/live/list",
  2129. "servers": [
  2130. {
  2131. "name": "Default",
  2132. "url": "rtmp://open-push.voip.yximgs.com/gifshow/"
  2133. },
  2134. {
  2135. "name": "North America",
  2136. "url": "rtmp://tx.push.yximgs.com/live/"
  2137. }
  2138. ]
  2139. },
  2140. {
  2141. "name": "Utreon",
  2142. "servers": [
  2143. {
  2144. "name": "Default",
  2145. "url": "rtmp://live.utreon.com:5222/app"
  2146. }
  2147. ],
  2148. "recommended": {
  2149. "keyint": 2,
  2150. "max video bitrate": 5000,
  2151. "max audio bitrate": 160
  2152. }
  2153. },
  2154. {
  2155. "name": "Autistici.org Live",
  2156. "servers": [
  2157. {
  2158. "name": "Default",
  2159. "url": "rtmp://live.autistici.org/ingest"
  2160. }
  2161. ],
  2162. "recommended": {
  2163. "keyint": 2,
  2164. "max video bitrate": 2500,
  2165. "max audio bitrate": 128
  2166. }
  2167. },
  2168. {
  2169. "name": "PhoneLiveStreaming",
  2170. "stream_key_link": "https://app.phonelivestreaming.com/media/rtmp",
  2171. "servers": [
  2172. {
  2173. "name": "PhoneLiveStreaming",
  2174. "url": "rtmp://live.phonelivestreaming.com/live/"
  2175. }
  2176. ],
  2177. "recommended": {
  2178. "keyint": 2,
  2179. "max video bitrate": 128,
  2180. "max audio bitrate": 160
  2181. }
  2182. },
  2183. {
  2184. "name": "ManyVids",
  2185. "servers": [
  2186. {
  2187. "name": "Default",
  2188. "url": "rtmp://rtmp.str.manyvids.com:1935/live_stream/"
  2189. }
  2190. ],
  2191. "recommended": {
  2192. "supported resolutions": [
  2193. "1280x720",
  2194. "960x540"
  2195. ],
  2196. "bitrate matrix": [
  2197. {
  2198. "res": "960x540",
  2199. "fps": 30,
  2200. "max bitrate": 3000
  2201. },
  2202. {
  2203. "res": "1280x720",
  2204. "fps": 30,
  2205. "max bitrate": 4000
  2206. }
  2207. ],
  2208. "keyint": 2,
  2209. "max video bitrate": 4000,
  2210. "max fps": 30
  2211. }
  2212. },
  2213. {
  2214. "name": "Fantasy.Club",
  2215. "stream_key_link": "https://fantasy.club/app/create-content/stream-now",
  2216. "more_info_link": "https://help.fantasy.club/",
  2217. "servers": [
  2218. {
  2219. "name": "US: East",
  2220. "url": "rtmp://live-east.fantasy.club/live"
  2221. },
  2222. {
  2223. "name": "US: West",
  2224. "url": "rtmp://live-west.fantasy.club/live"
  2225. },
  2226. {
  2227. "name": "Europe",
  2228. "url": "rtmp://live-eu.fantasy.club/live"
  2229. },
  2230. {
  2231. "name": "South America",
  2232. "url": "rtmp://live-sa.fantasy.club/live"
  2233. }
  2234. ],
  2235. "recommended": {
  2236. "keyint": 2,
  2237. "profile": "high",
  2238. "bframes": 0,
  2239. "x264opts": "scenecut=0",
  2240. "supported resolutions": [
  2241. "1920x1080",
  2242. "1280x720",
  2243. "852x480"
  2244. ],
  2245. "bitrate matrix": [
  2246. {
  2247. "res": "852x480",
  2248. "fps": 30,
  2249. "max bitrate": 1200
  2250. },
  2251. {
  2252. "res": "1280x720",
  2253. "fps": 30,
  2254. "max bitrate": 3600
  2255. },
  2256. {
  2257. "res": "1280x720",
  2258. "fps": 60,
  2259. "max bitrate": 4200
  2260. },
  2261. {
  2262. "res": "1920x1080",
  2263. "fps": 30,
  2264. "max bitrate": 5000
  2265. },
  2266. {
  2267. "res": "1920x1080",
  2268. "fps": 60,
  2269. "max bitrate": 7200
  2270. }
  2271. ],
  2272. "max fps": 60,
  2273. "max video bitrate": 7200,
  2274. "max audio bitrate": 196
  2275. }
  2276. },
  2277. {
  2278. "name": "Shareplay",
  2279. "more_info_link": "https://shareplay.tv",
  2280. "servers": [
  2281. {
  2282. "name": "Default",
  2283. "url": "rtmp://shareplay.tv:833/live"
  2284. }
  2285. ],
  2286. "recommended": {
  2287. "keyint": 2,
  2288. "profile": "main",
  2289. "supported resolutions": [
  2290. "1920x1080",
  2291. "1280x720",
  2292. "852x480",
  2293. "640x360"
  2294. ],
  2295. "bitrate matrix": [
  2296. {
  2297. "res": "640x360",
  2298. "fps": 30,
  2299. "max bitrate": 1000
  2300. },
  2301. {
  2302. "res": "640x360",
  2303. "fps": 60,
  2304. "max bitrate": 1500
  2305. },
  2306. {
  2307. "res": "852x480",
  2308. "fps": 30,
  2309. "max bitrate": 2000
  2310. },
  2311. {
  2312. "res": "852x480",
  2313. "fps": 60,
  2314. "max bitrate": 3000
  2315. },
  2316. {
  2317. "res": "1280x720",
  2318. "fps": 30,
  2319. "max bitrate": 4000
  2320. },
  2321. {
  2322. "res": "1280x720",
  2323. "fps": 60,
  2324. "max bitrate": 6000
  2325. },
  2326. {
  2327. "res": "1920x1080",
  2328. "fps": 30,
  2329. "max bitrate": 6000
  2330. },
  2331. {
  2332. "res": "1920x1080",
  2333. "fps": 60,
  2334. "max bitrate": 9000
  2335. }
  2336. ],
  2337. "max fps": 60,
  2338. "max video bitrate": 9000,
  2339. "max audio bitrate": 128
  2340. }
  2341. },
  2342. {
  2343. "name": "Sympla",
  2344. "servers": [
  2345. {
  2346. "name": "Sympla RTMP",
  2347. "url": "rtmp://rtmp.sympla.com.br:5222/app"
  2348. }
  2349. ],
  2350. "recommended": {
  2351. "keyint": 2,
  2352. "max video bitrate": 5000,
  2353. "max audio bitrate": 160
  2354. }
  2355. },
  2356. {
  2357. "name": "Mildom",
  2358. "more_info_link": "https://www.mildom.com/course/pc",
  2359. "stream_key_link": "https://www.mildom.com/creator/live",
  2360. "servers": [
  2361. {
  2362. "name": "Asia: Tokyo, Japan",
  2363. "url": "rtmp://live-tyo-tct.mildom.tv/live"
  2364. }
  2365. ],
  2366. "recommended": {
  2367. "keyint": 2,
  2368. "max video bitrate": 6000,
  2369. "max audio bitrate": 160
  2370. }
  2371. },
  2372. {
  2373. "name": "Nonolive",
  2374. "more_info_link": "https://wia.nonolive.com/views/obs_assistant_tutorial.html",
  2375. "stream_key_link": "https://www.nonolive.com/room_setting",
  2376. "servers": [
  2377. {
  2378. "name": "Asia: Hong Kong, China",
  2379. "url": "rtmp://live-hk-zl.nonolive.tv/live"
  2380. },
  2381. {
  2382. "name": "Asia: Jakarta, Indonesia",
  2383. "url": "rtmp://live-jkt-zl.nonolive.tv/live"
  2384. },
  2385. {
  2386. "name": "EU: Frankfurt, DE",
  2387. "url": "rtmp://live-fra-zl.nonolive.tv/live"
  2388. }
  2389. ],
  2390. "recommended": {
  2391. "keyint": 2,
  2392. "max video bitrate": 6000,
  2393. "max audio bitrate": 160
  2394. }
  2395. },
  2396. {
  2397. "name": "StreamVi",
  2398. "stream_key_link": "https://streamvi.ru/settings",
  2399. "servers": [
  2400. {
  2401. "name": "Default",
  2402. "url": "rtmp://live-default.streamvi.ru/live"
  2403. },
  2404. {
  2405. "name": "Russia (Moscow)",
  2406. "url": "rtmp://live-msk.streamvi.ru/live"
  2407. },
  2408. {
  2409. "name": "EU Central: Germany",
  2410. "url": "rtmp://live1.streamvi.ru/live"
  2411. }
  2412. ]
  2413. }
  2414. ]
  2415. }