services.json 66 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016
  1. {
  2. "format_version": 2,
  3. "services": [
  4. {
  5. "name": "Twitch",
  6. "common": true,
  7. "servers": [
  8. {
  9. "name": "Asia: Hong Kong",
  10. "url": "rtmp://live-hkg.twitch.tv/app"
  11. },
  12. {
  13. "name": "Asia: Seoul, South Korea",
  14. "url": "rtmp://live-sel.twitch.tv/app"
  15. },
  16. {
  17. "name": "Asia: Singapore",
  18. "url": "rtmp://live-sin.twitch.tv/app"
  19. },
  20. {
  21. "name": "Asia: Taipei, Taiwan",
  22. "url": "rtmp://live-tpe.twitch.tv/app"
  23. },
  24. {
  25. "name": "Asia: Tokyo, Japan",
  26. "url": "rtmp://live-tyo.twitch.tv/app"
  27. },
  28. {
  29. "name": "Australia: Sydney",
  30. "url": "rtmp://live-syd.twitch.tv/app"
  31. },
  32. {
  33. "name": "EU: Amsterdam, NL",
  34. "url": "rtmp://live-ams.twitch.tv/app"
  35. },
  36. {
  37. "name": "EU: Berlin, DE",
  38. "url": "rtmp://live-ber.twitch.tv/app"
  39. },
  40. {
  41. "name": "Europe: Copenhagen, DK",
  42. "url": "rtmp://live-cph.twitch.tv/app"
  43. },
  44. {
  45. "name": "EU: Frankfurt, DE",
  46. "url": "rtmp://live-fra.twitch.tv/app"
  47. },
  48. {
  49. "name": "EU: Helsinki, FI",
  50. "url": "rtmp://live-hel.twitch.tv/app"
  51. },
  52. {
  53. "name": "EU: Lisbon, Portugal",
  54. "url": "rtmp://live-lis.twitch.tv/app"
  55. },
  56. {
  57. "name": "EU: London, UK",
  58. "url": "rtmp://live-lhr.twitch.tv/app"
  59. },
  60. {
  61. "name": "EU: Madrid, Spain",
  62. "url": "rtmp://live-mad.twitch.tv/app"
  63. },
  64. {
  65. "name": "EU: Marseille, FR",
  66. "url": "rtmp://live-mrs.twitch.tv/app"
  67. },
  68. {
  69. "name": "EU: Milan, Italy",
  70. "url": "rtmp://live-mil.twitch.tv/app"
  71. },
  72. {
  73. "name": "EU: Norway, Oslo",
  74. "url": "rtmp://live-osl.twitch.tv/app"
  75. },
  76. {
  77. "name": "EU: Paris, FR",
  78. "url": "rtmp://live-cdg.twitch.tv/app"
  79. },
  80. {
  81. "name": "EU: Prague, CZ",
  82. "url": "rtmp://live-prg.twitch.tv/app"
  83. },
  84. {
  85. "name": "EU: Stockholm, SE",
  86. "url": "rtmp://live-arn.twitch.tv/app"
  87. },
  88. {
  89. "name": "EU: Vienna, Austria",
  90. "url": "rtmp://live-vie.twitch.tv/app"
  91. },
  92. {
  93. "name": "EU: Warsaw, Poland",
  94. "url": "rtmp://live-waw.twitch.tv/app"
  95. },
  96. {
  97. "name": "NA: Mexico City",
  98. "url": "rtmp://live-qro.twitch.tv/app"
  99. },
  100. {
  101. "name": "NA: Quebec, Canada",
  102. "url": "rtmp://live-ymq.twitch.tv/app"
  103. },
  104. {
  105. "name": "NA: Toronto, Canada",
  106. "url": "rtmp://live-yto.twitch.tv/app"
  107. },
  108. {
  109. "name": "South America: Argentina",
  110. "url": "rtmp://live-eze.twitch.tv/app"
  111. },
  112. {
  113. "name": "South America: Chile",
  114. "url": "rtmp://live-scl.twitch.tv/app"
  115. },
  116. {
  117. "name": "South America: Lima, Peru",
  118. "url": "rtmp://live-lim.twitch.tv/app"
  119. },
  120. {
  121. "name": "South America: Medellin, Colombia",
  122. "url": "rtmp://live-mde.twitch.tv/app"
  123. },
  124. {
  125. "name": "South America: Rio de Janeiro, Brazil",
  126. "url": "rtmp://live-rio.twitch.tv/app"
  127. },
  128. {
  129. "name": "South America: Sao Paulo, Brazil",
  130. "url": "rtmp://live-sao.twitch.tv/app"
  131. },
  132. {
  133. "name": "US Central: Dallas, TX",
  134. "url": "rtmp://live-dfw.twitch.tv/app"
  135. },
  136. {
  137. "name": "US Central: Denver, CO",
  138. "url": "rtmp://live-den.twitch.tv/app"
  139. },
  140. {
  141. "name": "US Central: Houston, TX",
  142. "url": "rtmp://live-hou.twitch.tv/app"
  143. },
  144. {
  145. "name": "US Central: Salt Lake City, UT",
  146. "url": "rtmp://live-slc.twitch.tv/app"
  147. },
  148. {
  149. "name": "US East: Ashburn, VA",
  150. "url": "rtmp://live-iad.twitch.tv/app"
  151. },
  152. {
  153. "name": "US East: Atlanta, GA",
  154. "url": "rtmp://live-atl.twitch.tv/app"
  155. },
  156. {
  157. "name": "US East: Chicago",
  158. "url": "rtmp://live-ord.twitch.tv/app"
  159. },
  160. {
  161. "name": "US East: Miami, FL",
  162. "url": "rtmp://live-mia.twitch.tv/app"
  163. },
  164. {
  165. "name": "US East: New York, NY",
  166. "url": "rtmp://live-jfk.twitch.tv/app"
  167. },
  168. {
  169. "name": "US West: Los Angeles, CA",
  170. "url": "rtmp://live-lax.twitch.tv/app"
  171. },
  172. {
  173. "name": "US West: Phoenix, AZ",
  174. "url": "rtmp://live-phx.twitch.tv/app"
  175. },
  176. {
  177. "name": "US West: Portland, Oregon",
  178. "url": "rtmp://live-pdx.twitch.tv/app"
  179. },
  180. {
  181. "name": "US West: San Francisco, CA",
  182. "url": "rtmp://live-sfo.twitch.tv/app"
  183. },
  184. {
  185. "name": "US West: San Jose, CA",
  186. "url": "rtmp://live-sjc.twitch.tv/app"
  187. },
  188. {
  189. "name": "US West: Seattle, WA",
  190. "url": "rtmp://live-sea.twitch.tv/app"
  191. }
  192. ],
  193. "recommended": {
  194. "keyint": 2,
  195. "max video bitrate": 6000,
  196. "max audio bitrate": 160,
  197. "x264opts": "scenecut=0"
  198. }
  199. },
  200. {
  201. "name": "YouTube / YouTube Gaming",
  202. "common": true,
  203. "servers": [
  204. {
  205. "name": "Primary YouTube ingest server",
  206. "url": "rtmp://a.rtmp.youtube.com/live2"
  207. },
  208. {
  209. "name": "Backup YouTube ingest server",
  210. "url": "rtmp://b.rtmp.youtube.com/live2?backup=1"
  211. }
  212. ],
  213. "recommended": {
  214. "keyint": 2,
  215. "max video bitrate": 51000,
  216. "max audio bitrate": 160
  217. }
  218. },
  219. {
  220. "name": "VIMM",
  221. "servers": [
  222. {
  223. "name": "Europe: Frankfurt",
  224. "url": "rtmp://eu.vimm.tv/live"
  225. },
  226. {
  227. "name": "North America: Montreal",
  228. "url": "rtmp://us.vimm.tv/live"
  229. }
  230. ],
  231. "recommended": {
  232. "keyint": 2,
  233. "max video bitrate": 8000,
  234. "max audio bitrate": 320,
  235. "x264opts": "scenecut=0"
  236. }
  237. },
  238. {
  239. "name": "Smashcast",
  240. "servers": [
  241. {
  242. "name": "Default",
  243. "url": "rtmp://live.hitbox.tv/push"
  244. },
  245. {
  246. "name": "EU-North: Amsterdam, Netherlands",
  247. "url": "rtmp://live.ams.hitbox.tv/push"
  248. },
  249. {
  250. "name": "EU-West: Paris, France",
  251. "url": "rtmp://live.cdg.hitbox.tv/push"
  252. },
  253. {
  254. "name": "EU-South: Milan, Italia",
  255. "url": "rtmp://live.mxp.hitbox.tv/push"
  256. },
  257. {
  258. "name": "Russia: Moscow",
  259. "url": "rtmp://live.dme.hitbox.tv/push"
  260. },
  261. {
  262. "name": "US-East: New York",
  263. "url": "rtmp://live.jfk.hitbox.tv/push"
  264. },
  265. {
  266. "name": "US-West: San Francisco",
  267. "url": "rtmp://live.sfo.hitbox.tv/push"
  268. },
  269. {
  270. "name": "US-West: Los Angeles",
  271. "url": "rtmp://live.lax.hitbox.tv/push"
  272. },
  273. {
  274. "name": "South America: Sao Paulo, Brazil",
  275. "url": "rtmp://live.gru.hitbox.tv/push"
  276. },
  277. {
  278. "name": "Asia: Singapore",
  279. "url": "rtmp://live.sin.hitbox.tv/push"
  280. },
  281. {
  282. "name": "Oceania: Sydney, Australia",
  283. "url": "rtmp://live.syd.hitbox.tv/push"
  284. }
  285. ],
  286. "recommended": {
  287. "keyint": 2,
  288. "profile": "high",
  289. "max video bitrate": 3500,
  290. "max audio bitrate": 320
  291. }
  292. },
  293. {
  294. "name": "Mixer.com - FTL",
  295. "common": true,
  296. "servers": [
  297. {
  298. "name": "US: Dallas, TX",
  299. "url": "ingest-dal.mixer.com"
  300. },
  301. {
  302. "name": "US: San Jose, CA",
  303. "url": "ingest-sjc.mixer.com"
  304. },
  305. {
  306. "name": "US: Seattle, WA",
  307. "url": "ingest-sea.mixer.com"
  308. },
  309. {
  310. "name": "US: Washington DC",
  311. "url": "ingest-wdc.mixer.com"
  312. },
  313. {
  314. "name": "Canada: Toronto",
  315. "url": "ingest-tor.mixer.com"
  316. },
  317. {
  318. "name": "EU: London",
  319. "url": "ingest-lon.mixer.com"
  320. },
  321. {
  322. "name": "EU: Amsterdam",
  323. "url": "ingest-ams.mixer.com"
  324. },
  325. {
  326. "name": "EU: Milan",
  327. "url": "ingest-mil.mixer.com"
  328. },
  329. {
  330. "name": "EU: Paris",
  331. "url": "ingest-par.mixer.com"
  332. },
  333. {
  334. "name": "EU: Frankfurt",
  335. "url": "ingest-fra.mixer.com"
  336. },
  337. {
  338. "name": "Brazil: Sao Paulo",
  339. "url": "ingest-sao.mixer.com"
  340. },
  341. {
  342. "name": "Australia: Melbourne",
  343. "url": "ingest-mel.mixer.com"
  344. },
  345. {
  346. "name": "Australia: Sydney",
  347. "url": "ingest-syd.mixer.com"
  348. },
  349. {
  350. "name": "Mexico: Mexico City",
  351. "url": "ingest-mex.mixer.com"
  352. },
  353. {
  354. "name": "Asia: Hong Kong",
  355. "url": "ingest-hkg.mixer.com"
  356. },
  357. {
  358. "name": "Asia: Tokyo",
  359. "url": "ingest-tok.mixer.com"
  360. },
  361. {
  362. "name": "South Korea: Seoul",
  363. "url": "ingest-seo.mixer.com"
  364. },
  365. {
  366. "name": "India: Chennai",
  367. "url": "ingest-che.mixer.com"
  368. }
  369. ],
  370. "recommended": {
  371. "keyint": 2,
  372. "output": "ftl_output",
  373. "max audio bitrate": 160,
  374. "max video bitrate": 10000,
  375. "profile": "main",
  376. "bframes": 0,
  377. "x264opts": "scenecut=0"
  378. }
  379. },
  380. {
  381. "name": "Mixer.com - RTMP",
  382. "common": true,
  383. "servers": [
  384. {
  385. "name": "US: Dallas, TX",
  386. "url": "rtmp://ingest-dal.mixer.com:1935/beam"
  387. },
  388. {
  389. "name": "US: San Jose, CA",
  390. "url": "rtmp://ingest-sjc.mixer.com:1935/beam"
  391. },
  392. {
  393. "name": "US: Seattle, WA",
  394. "url": "rtmp://ingest-sea.mixer.com:1935/beam"
  395. },
  396. {
  397. "name": "US: Washington DC",
  398. "url": "rtmp://ingest-wdc.mixer.com:1935/beam"
  399. },
  400. {
  401. "name": "Canada: Toronto",
  402. "url": "rtmp://ingest-tor.mixer.com:1935/beam"
  403. },
  404. {
  405. "name": "EU: London",
  406. "url": "rtmp://ingest-lon.mixer.com:1935/beam"
  407. },
  408. {
  409. "name": "EU: Amsterdam",
  410. "url": "rtmp://ingest-ams.mixer.com:1935/beam"
  411. },
  412. {
  413. "name": "EU: Milan",
  414. "url": "rtmp://ingest-mil.mixer.com:1935/beam"
  415. },
  416. {
  417. "name": "EU: Paris",
  418. "url": "rtmp://ingest-par.mixer.com:1935/beam"
  419. },
  420. {
  421. "name": "EU: Frankfurt",
  422. "url": "rtmp://ingest-fra.mixer.com:1935/beam"
  423. },
  424. {
  425. "name": "Brazil: Sao Paulo",
  426. "url": "rtmp://ingest-sao.mixer.com:1935/beam"
  427. },
  428. {
  429. "name": "Australia: Melbourne",
  430. "url": "rtmp://ingest-mel.mixer.com:1935/beam"
  431. },
  432. {
  433. "name": "Australia: Sydney",
  434. "url": "rtmp://ingest-syd.mixer.com:1935/beam"
  435. },
  436. {
  437. "name": "Mexico: Mexico City",
  438. "url": "rtmp://ingest-mex.mixer.com:1935/beam"
  439. },
  440. {
  441. "name": "Asia: Hong Kong",
  442. "url": "rtmp://ingest-hkg.mixer.com:1935/beam"
  443. },
  444. {
  445. "name": "Asia: Tokyo",
  446. "url": "rtmp://ingest-tok.mixer.com:1935/beam"
  447. },
  448. {
  449. "name": "South Korea: Seoul",
  450. "url": "rtmp://ingest-seo.mixer.com:1935/beam"
  451. },
  452. {
  453. "name": "India: Chennai",
  454. "url": "rtmp://ingest-che.mixer.com:1935/beam"
  455. }
  456. ],
  457. "recommended": {
  458. "keyint": 2,
  459. "max audio bitrate": 160,
  460. "max video bitrate": 10000,
  461. "profile": "main",
  462. "x264opts": "scenecut=0"
  463. }
  464. },
  465. {
  466. "name": "Mobcrush",
  467. "servers": [
  468. {
  469. "name": "Primary",
  470. "url": "rtmp://live.mobcrush.net/mob"
  471. }
  472. ],
  473. "recommended": {
  474. "keyint": 2,
  475. "profile": "main",
  476. "max video bitrate": 6000,
  477. "max audio bitrate": 160
  478. }
  479. },
  480. {
  481. "name": "Web.TV",
  482. "servers": [
  483. {
  484. "name": "Primary",
  485. "url": "rtmp://live3.origins.web.tv/liveext"
  486. }
  487. ],
  488. "recommended": {
  489. "keyint": 2,
  490. "profile": "main",
  491. "max video bitrate": 3500,
  492. "max audio bitrate": 160
  493. }
  494. },
  495. {
  496. "name": "GoodGame.ru",
  497. "servers": [
  498. {
  499. "name": "Моscow",
  500. "url": "rtmp://msk.goodgame.ru:1940/live"
  501. }
  502. ]
  503. },
  504. {
  505. "name": "YouStreamer",
  506. "servers": [
  507. {
  508. "name": "Moscow",
  509. "url": "rtmp://push.youstreamer.com/in/"
  510. }
  511. ]
  512. },
  513. {
  514. "name": "Vaughn Live / iNSTAGIB",
  515. "servers": [
  516. {
  517. "name": "US: Primary",
  518. "url": "rtmp://live.vaughnsoft.net/live"
  519. },
  520. {
  521. "name": "US: Chicago, IL",
  522. "url": "rtmp://live-ord.vaughnsoft.net/live"
  523. },
  524. {
  525. "name": "US: Denver, CO",
  526. "url": "rtmp://live-den.vaughnsoft.net/live"
  527. },
  528. {
  529. "name": "US: New York, NY",
  530. "url": "rtmp://live-nyc.vaughnsoft.net/live"
  531. },
  532. {
  533. "name": "EU: Amsterdam, NL",
  534. "url": "rtmp://live-ams.vaughnsoft.net/live"
  535. }
  536. ],
  537. "recommended": {
  538. "keyint": 2,
  539. "max video bitrate": 3500,
  540. "max audio bitrate": 160
  541. }
  542. },
  543. {
  544. "name": "Breakers.TV",
  545. "servers": [
  546. {
  547. "name": "US: Primary",
  548. "url": "rtmp://live.vaughnsoft.net/live"
  549. },
  550. {
  551. "name": "US: Chicago, IL",
  552. "url": "rtmp://live-ord.vaughnsoft.net/live"
  553. },
  554. {
  555. "name": "US: Denver, CO",
  556. "url": "rtmp://live-den.vaughnsoft.net/live"
  557. },
  558. {
  559. "name": "US: New York, NY",
  560. "url": "rtmp://live-nyc.vaughnsoft.net/live"
  561. },
  562. {
  563. "name": "EU: Amsterdam, NL",
  564. "url": "rtmp://live-ams.vaughnsoft.net/live"
  565. }
  566. ],
  567. "recommended": {
  568. "keyint": 2,
  569. "max video bitrate": 3500,
  570. "max audio bitrate": 160
  571. }
  572. },
  573. {
  574. "name": "Facebook Live",
  575. "common": true,
  576. "servers": [
  577. {
  578. "name": "Default",
  579. "url": "rtmps://rtmp-api.facebook.com:443/rtmp/"
  580. }
  581. ],
  582. "recommended": {
  583. "keyint": 2,
  584. "profile": "main",
  585. "max video bitrate": 6000,
  586. "max audio bitrate": 128
  587. }
  588. },
  589. {
  590. "name": "Restream.io - RTMP",
  591. "alt_names": [
  592. "Restream.io"
  593. ],
  594. "common": true,
  595. "servers": [
  596. {
  597. "name": "Autodetect",
  598. "url": "rtmp://live.restream.io/live"
  599. },
  600. {
  601. "name": "EU-West (London, GB)",
  602. "url": "rtmp://london.restream.io/live"
  603. },
  604. {
  605. "name": "EU-West (Amsterdam, NL)",
  606. "url": "rtmp://amsterdam.restream.io/live"
  607. },
  608. {
  609. "name": "EU-West (Luxembourg)",
  610. "url": "rtmp://luxembourg.restream.io/live"
  611. },
  612. {
  613. "name": "EU-West (Paris, FR)",
  614. "url": "rtmp://paris.restream.io/live"
  615. },
  616. {
  617. "name": "EU-West (Milan, IT)",
  618. "url": "rtmp://milan.restream.io/live"
  619. },
  620. {
  621. "name": "EU-Central (Frankfurt, DE)",
  622. "url": "rtmp://frankfurt.restream.io/live"
  623. },
  624. {
  625. "name": "EU-East (Falkenstein, DE)",
  626. "url": "rtmp://falkenstein.restream.io/live"
  627. },
  628. {
  629. "name": "EU-East (Prague, Czech)",
  630. "url": "rtmp://prague.restream.io/live"
  631. },
  632. {
  633. "name": "EU-South (Madrid, Spain)",
  634. "url": "rtmp://madrid.restream.io/live"
  635. },
  636. {
  637. "name": "Russia (Moscow)",
  638. "url": "rtmp://moscow.restream.io/live"
  639. },
  640. {
  641. "name": "Turkey (Istanbul)",
  642. "url": "rtmp://istanbul.restream.io/live"
  643. },
  644. {
  645. "name": "Israel (Tel Aviv)",
  646. "url": "rtmp://telaviv.restream.io/live"
  647. },
  648. {
  649. "name": "US-West (Seattle, WA)",
  650. "url": "rtmp://seattle.restream.io/live"
  651. },
  652. {
  653. "name": "US-West (San Jose, CA)",
  654. "url": "rtmp://sanjose.restream.io/live"
  655. },
  656. {
  657. "name": "US-Central (Dallas, TX)",
  658. "url": "rtmp://dallas.restream.io/live"
  659. },
  660. {
  661. "name": "US-East (Washington, DC)",
  662. "url": "rtmp://washington.restream.io/live"
  663. },
  664. {
  665. "name": "US-East (Miami, FL)",
  666. "url": "rtmp://miami.restream.io/live"
  667. },
  668. {
  669. "name": "US-East (Chicago, IL)",
  670. "url": "rtmp://chicago.restream.io/live"
  671. },
  672. {
  673. "name": "NA-East (Toronto, Canada)",
  674. "url": "rtmp://toronto.restream.io/live"
  675. },
  676. {
  677. "name": "SA (Saint Paul, Brazil)",
  678. "url": "rtmp://saopaulo.restream.io/live"
  679. },
  680. {
  681. "name": "India (Bangalore)",
  682. "url": "rtmp://bangalore.restream.io/live"
  683. },
  684. {
  685. "name": "Asia (Singapore)",
  686. "url": "rtmp://singapore.restream.io/live"
  687. },
  688. {
  689. "name": "Asia (Seoul, South Korea)",
  690. "url": "rtmp://seoul.restream.io/live"
  691. },
  692. {
  693. "name": "Asia (Tokyo, Japan)",
  694. "url": "rtmp://tokyo.restream.io/live"
  695. },
  696. {
  697. "name": "Australia (Sydney)",
  698. "url": "rtmp://sydney.restream.io/live"
  699. }
  700. ],
  701. "recommended": {
  702. "keyint": 2
  703. }
  704. },
  705. {
  706. "name": "Restream.io - FTL",
  707. "common": true,
  708. "servers": [
  709. {
  710. "name": "Autodetect",
  711. "url": "live.restream.io"
  712. },
  713. {
  714. "name": "EU-West (London, GB)",
  715. "url": "london.restream.io"
  716. },
  717. {
  718. "name": "EU-West (Amsterdam, NL)",
  719. "url": "amsterdam.restream.io"
  720. },
  721. {
  722. "name": "EU-West (Luxembourg)",
  723. "url": "luxembourg.restream.io"
  724. },
  725. {
  726. "name": "EU-West (Paris, FR)",
  727. "url": "paris.restream.io"
  728. },
  729. {
  730. "name": "EU-West (Milan, IT)",
  731. "url": "milan.restream.io"
  732. },
  733. {
  734. "name": "EU-Central (Frankfurt, DE)",
  735. "url": "frankfurt.restream.io"
  736. },
  737. {
  738. "name": "EU-East (Falkenstein, DE)",
  739. "url": "falkenstein.restream.io"
  740. },
  741. {
  742. "name": "EU-East (Prague, Czech)",
  743. "url": "prague.restream.io"
  744. },
  745. {
  746. "name": "EU-South (Madrid, Spain)",
  747. "url": "madrid.restream.io"
  748. },
  749. {
  750. "name": "Russia (Moscow)",
  751. "url": "moscow.restream.io"
  752. },
  753. {
  754. "name": "Turkey (Istanbul)",
  755. "url": "istanbul.restream.io"
  756. },
  757. {
  758. "name": "Israel (Tel Aviv)",
  759. "url": "telaviv.restream.io"
  760. },
  761. {
  762. "name": "US-West (Seattle, WA)",
  763. "url": "seattle.restream.io"
  764. },
  765. {
  766. "name": "US-West (San Jose, CA)",
  767. "url": "sanjose.restream.io"
  768. },
  769. {
  770. "name": "US-Central (Dallas, TX)",
  771. "url": "dallas.restream.io"
  772. },
  773. {
  774. "name": "US-East (Washington, DC)",
  775. "url": "washington.restream.io"
  776. },
  777. {
  778. "name": "US-East (Miami, FL)",
  779. "url": "miami.restream.io"
  780. },
  781. {
  782. "name": "US-East (Chicago, IL)",
  783. "url": "chicago.restream.io"
  784. },
  785. {
  786. "name": "NA-East (Toronto, Canada)",
  787. "url": "toronto.restream.io"
  788. },
  789. {
  790. "name": "SA (Saint Paul, Brazil)",
  791. "url": "saopaulo.restream.io"
  792. },
  793. {
  794. "name": "India (Bangalore)",
  795. "url": "bangalore.restream.io"
  796. },
  797. {
  798. "name": "Asia (Singapore)",
  799. "url": "singapore.restream.io"
  800. },
  801. {
  802. "name": "Asia (Seoul, South Korea)",
  803. "url": "seoul.restream.io"
  804. },
  805. {
  806. "name": "Asia (Tokyo, Japan)",
  807. "url": "tokyo.restream.io"
  808. },
  809. {
  810. "name": "Australia (Sydney)",
  811. "url": "sydney.restream.io"
  812. }
  813. ],
  814. "recommended": {
  815. "keyint": 2,
  816. "output": "ftl_output",
  817. "max audio bitrate": 160,
  818. "max video bitrate": 10000,
  819. "profile": "main",
  820. "bframes": 0
  821. }
  822. },
  823. {
  824. "name": "Nood",
  825. "servers": [
  826. {
  827. "name": "Global: Fastest (Recommended)",
  828. "url": "rtmp://stream.nood.tv/live_source"
  829. },
  830. {
  831. "name": "NA East: Ashburn, VA, USA",
  832. "url": "rtmp://us-east-1.stream.nood.tv/live_source"
  833. },
  834. {
  835. "name": "NA East: Columbus, OH, USA",
  836. "url": "rtmp://us-east-2.stream.nood.tv/live_source"
  837. },
  838. {
  839. "name": "NA East: Montreal, QC, CAN",
  840. "url": "rtmp://ca-central-1.stream.nood.tv/live_source"
  841. },
  842. {
  843. "name": "NA West: San Francisco, CA, USA",
  844. "url": "rtmp://us-west-1.stream.nood.tv/live_source"
  845. },
  846. {
  847. "name": "NA West: Portland, OR, USA",
  848. "url": "rtmp://us-west-2.stream.nood.tv/live_source"
  849. },
  850. {
  851. "name": "SA East: Sao Paulo, BRA",
  852. "url": "rtmp://sa-east-1.stream.nood.tv/live_source"
  853. },
  854. {
  855. "name": "EU West: Dublin, IRL",
  856. "url": "rtmp://eu-west-1.stream.nood.tv/live_source"
  857. },
  858. {
  859. "name": "EU West: London, GBR",
  860. "url": "rtmp://eu-west-2.stream.nood.tv/live_source"
  861. },
  862. {
  863. "name": "EU West: Paris, FRA",
  864. "url": "rtmp://eu-west-3.stream.nood.tv/live_source"
  865. },
  866. {
  867. "name": "EU West: Frankfurt, DEU",
  868. "url": "rtmp://eu-central-1.stream.nood.tv/live_source"
  869. },
  870. {
  871. "name": "Asia North-East: Tokyo, JPN",
  872. "url": "rtmp://ap-northeast-1.stream.nood.tv/live_source"
  873. },
  874. {
  875. "name": "Asia North-East: Seoul, KOR",
  876. "url": "rtmp://ap-northeast-2.stream.nood.tv/live_source"
  877. },
  878. {
  879. "name": "Asia South-East: Singapore, SGP",
  880. "url": "rtmp://ap-southeast-1.stream.nood.tv/live_source"
  881. },
  882. {
  883. "name": "Asia South-East: Sydney, AUS",
  884. "url": "rtmp://ap-southeast-2.stream.nood.tv/live_source"
  885. },
  886. {
  887. "name": "Asia South: Mumbai, IND",
  888. "url": "rtmp://ap-south-1.stream.nood.tv/live_source"
  889. }
  890. ],
  891. "recommended": {
  892. "keyint": 2,
  893. "max video bitrate": 25000,
  894. "max audio bitrate": 192,
  895. "x264opts": "scenecut=0"
  896. }
  897. },
  898. {
  899. "name": "Castr.io",
  900. "servers": [
  901. {
  902. "name": "US-East (Chicago, IL)",
  903. "url": "rtmp://cg.castr.io/static"
  904. },
  905. {
  906. "name": "US-East (New York, NY)",
  907. "url": "rtmp://ny.castr.io/static"
  908. },
  909. {
  910. "name": "US-East (Miami, FL)",
  911. "url": "rtmp://mi.castr.io/static"
  912. },
  913. {
  914. "name": "US-West (Seattle, WA)",
  915. "url": "rtmp://se.castr.io/static"
  916. },
  917. {
  918. "name": "US-West (Los Angeles, CA)",
  919. "url": "rtmp://la.castr.io/static"
  920. },
  921. {
  922. "name": "US-Central (Dallas, TX)",
  923. "url": "rtmp://da.castr.io/static"
  924. },
  925. {
  926. "name": "NA-East (Toronto, CA)",
  927. "url": "rtmp://qc.castr.io/static"
  928. },
  929. {
  930. "name": "SA (Sao Paulo, BR)",
  931. "url": "rtmp://br.castr.io/static"
  932. },
  933. {
  934. "name": "EU-West (London, UK)",
  935. "url": "rtmp://uk.castr.io/static"
  936. },
  937. {
  938. "name": "EU-Central (Frankfurt, DE)",
  939. "url": "rtmp://fr.castr.io/static"
  940. },
  941. {
  942. "name": "Russia (Moscow)",
  943. "url": "rtmp://ru.castr.io/static"
  944. },
  945. {
  946. "name": "Asia (Singapore)",
  947. "url": "rtmp://sg.castr.io/static"
  948. },
  949. {
  950. "name": "Asia (India)",
  951. "url": "rtmp://in.castr.io/static"
  952. },
  953. {
  954. "name": "Australia (Sydney)",
  955. "url": "rtmp://au.castr.io/static"
  956. },
  957. {
  958. "name": "US Central",
  959. "url": "rtmp://us-central.castr.io/static"
  960. },
  961. {
  962. "name": "US West",
  963. "url": "rtmp://us-west.castr.io/static"
  964. },
  965. {
  966. "name": "US East",
  967. "url": "rtmp://us-east.castr.io/static"
  968. },
  969. {
  970. "name": "US South",
  971. "url": "rtmp://us-south.castr.io/static"
  972. },
  973. {
  974. "name": "South America",
  975. "url": "rtmp://south-am.castr.io/static"
  976. },
  977. {
  978. "name": "EU Central",
  979. "url": "rtmp://eu-central.castr.io/static"
  980. },
  981. {
  982. "name": "Singapore",
  983. "url": "rtmp://sg-central.castr.io/static"
  984. }
  985. ],
  986. "recommended": {
  987. "keyint": 2
  988. }
  989. },
  990. {
  991. "name": "Boomstream",
  992. "servers": [
  993. {
  994. "name": "Default",
  995. "url": "rtmp://live.boomstream.com/live"
  996. }
  997. ]
  998. },
  999. {
  1000. "name": "Meridix Live Sports Platform",
  1001. "servers": [
  1002. {
  1003. "name": "Primary",
  1004. "url": "rtmp://publish.meridix.com/live"
  1005. }
  1006. ],
  1007. "recommended": {
  1008. "max video bitrate": 3500
  1009. }
  1010. },
  1011. {
  1012. "name": "AfreecaTV",
  1013. "alt_names": ["아프리카TV", "Afreeca.TV"],
  1014. "servers": [
  1015. {
  1016. "name": "Asia : Korea",
  1017. "url": "rtmp://rtmpmanager-freecat.afreeca.tv/app"
  1018. },
  1019. {
  1020. "name": "North America : US East",
  1021. "url": "rtmp://rtmp-esu.afreecatv.com/app"
  1022. },
  1023. {
  1024. "name": "North America : US West",
  1025. "url": "rtmp://rtmp-wsu.afreecatv.com/app"
  1026. },
  1027. {
  1028. "name": "Asia : Singapore",
  1029. "url": "rtmp://rtmp-sgp.afreecatv.com/app"
  1030. }
  1031. ],
  1032. "recommended": {
  1033. "keyint": 2,
  1034. "profile": "main",
  1035. "max video bitrate": 8000,
  1036. "max audio bitrate": 192
  1037. }
  1038. },
  1039. {
  1040. "name": "CAM4",
  1041. "servers": [
  1042. {
  1043. "name": "CAM4",
  1044. "url": "rtmp://origin.cam4.com/cam4-origin-live"
  1045. }
  1046. ],
  1047. "recommended": {
  1048. "keyint": 1,
  1049. "profile": "baseline",
  1050. "max video bitrate": 3000,
  1051. "max audio bitrate": 128
  1052. }
  1053. },
  1054. {
  1055. "name": "Picarto",
  1056. "servers": [
  1057. {
  1058. "name": "US East (Chicago, USA)",
  1059. "url": "rtmp://live.us-east1.picarto.tv/golive"
  1060. },
  1061. {
  1062. "name": "US West (Los Angeles, USA)",
  1063. "url": "rtmp://live.us-west1.picarto.tv/golive"
  1064. },
  1065. {
  1066. "name": "EU West (Düsseldorf, Germany)",
  1067. "url": "rtmp://live.eu-west1.picarto.tv/golive"
  1068. }
  1069. ],
  1070. "recommended": {
  1071. "keyint": 2,
  1072. "profile": "main",
  1073. "max video bitrate": 3500
  1074. }
  1075. },
  1076. {
  1077. "name": "Pandora TV Korea",
  1078. "servers": [
  1079. {
  1080. "name": "Default",
  1081. "url": "rtmp://plive.pandora.tv:80/mediaHub"
  1082. }
  1083. ]
  1084. },
  1085. {
  1086. "name": "Livestream",
  1087. "servers": [
  1088. {
  1089. "name": "Primary",
  1090. "url": "rtmp://rtmpin.livestreamingest.com/rtmpin"
  1091. }
  1092. ]
  1093. },
  1094. {
  1095. "name": "Uscreen",
  1096. "servers": [
  1097. {
  1098. "name": "Default",
  1099. "url": "rtmp://live.uscreen.app/app"
  1100. }
  1101. ]
  1102. },
  1103. {
  1104. "name": "Stripchat",
  1105. "servers": [
  1106. {
  1107. "name": "Auto",
  1108. "url": "rtmp://s-sd.stripst.com/ext"
  1109. }
  1110. ],
  1111. "recommended": {
  1112. "keyint": 2,
  1113. "profile": "main",
  1114. "bframes": 0,
  1115. "max video bitrate": 6000,
  1116. "max audio bitrate": 128,
  1117. "x264opts": "tune=zerolatency"
  1118. }
  1119. },
  1120. {
  1121. "name": "Chaturbate",
  1122. "servers": [
  1123. {
  1124. "name": "Global Main Fastest - Recommended",
  1125. "url": "rtmp://live.stream.highwebmedia.com/live-origin"
  1126. },
  1127. {
  1128. "name": "Global Backup",
  1129. "url": "rtmp://live-backup.stream.highwebmedia.com/live-origin"
  1130. },
  1131. {
  1132. "name": "US West: Seattle, WA",
  1133. "url": "rtmp://live-sea.stream.highwebmedia.com/live-origin"
  1134. },
  1135. {
  1136. "name": "US West: Phoenix, AZ",
  1137. "url": "rtmp://live-phx.stream.highwebmedia.com/live-origin"
  1138. },
  1139. {
  1140. "name": "US Central: Salt Lake City, UT",
  1141. "url": "rtmp://live-slc.stream.highwebmedia.com/live-origin"
  1142. },
  1143. {
  1144. "name": "US Central: Chicago, IL",
  1145. "url": "rtmp://live-chi.stream.highwebmedia.com/live-origin"
  1146. },
  1147. {
  1148. "name": "US East: Atlanta, GA",
  1149. "url": "rtmp://live-atl.stream.highwebmedia.com/live-origin"
  1150. },
  1151. {
  1152. "name": "US East: Ashburn, VA",
  1153. "url": "rtmp://live-ash.stream.highwebmedia.com/live-origin"
  1154. },
  1155. {
  1156. "name": "South America: Sao Paulo, Brazil",
  1157. "url": "rtmp://live-gru.stream.highwebmedia.com/live-origin"
  1158. },
  1159. {
  1160. "name": "EU: Amsterdam, NL",
  1161. "url": "rtmp://live-nld.stream.highwebmedia.com/live-origin"
  1162. },
  1163. {
  1164. "name": "EU: Alblasserdam, NL",
  1165. "url": "rtmp://live-alb.stream.highwebmedia.com/live-origin"
  1166. },
  1167. {
  1168. "name": "EU: Frankfurt, DE",
  1169. "url": "rtmp://live-fra.stream.highwebmedia.com/live-origin"
  1170. },
  1171. {
  1172. "name": "EU: Belgrade, Serbia",
  1173. "url": "rtmp://live-srb.stream.highwebmedia.com/live-origin"
  1174. },
  1175. {
  1176. "name": "Asia: Singapore",
  1177. "url": "rtmp://live-sin.stream.highwebmedia.com/live-origin"
  1178. },
  1179. {
  1180. "name": "Asia: Tokyo, Japan",
  1181. "url": "rtmp://live-nrt.stream.highwebmedia.com/live-origin"
  1182. },
  1183. {
  1184. "name": "Australia: Sydney",
  1185. "url": "rtmp://live-syd.stream.highwebmedia.com/live-origin"
  1186. }
  1187. ],
  1188. "recommended": {
  1189. "keyint": 2,
  1190. "max video bitrate": 50000,
  1191. "max audio bitrate": 192
  1192. }
  1193. },
  1194. {
  1195. "name": "Twitter / Periscope",
  1196. "common": true,
  1197. "servers": [
  1198. {
  1199. "name": "US West: California",
  1200. "url": "rtmp://ca.pscp.tv:80/x"
  1201. },
  1202. {
  1203. "name": "US West: Oregon",
  1204. "url": "rtmp://or.pscp.tv:80/x"
  1205. },
  1206. {
  1207. "name": "US East: Virginia",
  1208. "url": "rtmp://va.pscp.tv:80/x"
  1209. },
  1210. {
  1211. "name": "South America: Brazil",
  1212. "url": "rtmp://br.pscp.tv:80/x"
  1213. },
  1214. {
  1215. "name": "EU West: Ireland",
  1216. "url": "rtmp://ie.pscp.tv:80/x"
  1217. },
  1218. {
  1219. "name": "EU Central: Germany",
  1220. "url": "rtmp://de.pscp.tv:80/x"
  1221. },
  1222. {
  1223. "name": "Asia/Pacific: Australia",
  1224. "url": "rtmp://au.pscp.tv:80/x"
  1225. },
  1226. {
  1227. "name": "Asia/Pacific: Japan",
  1228. "url": "rtmp://jp.pscp.tv:80/x"
  1229. },
  1230. {
  1231. "name": "Asia/Pacific: Singapore",
  1232. "url": "rtmp://sg.pscp.tv:80/x"
  1233. }
  1234. ],
  1235. "recommended": {
  1236. "keyint": 3,
  1237. "max video bitrate": 4000,
  1238. "max audio bitrate": 128
  1239. }
  1240. },
  1241. {
  1242. "name": "Switchboard Live",
  1243. "alt_names": ["Switchboard Live (Joicaster)"],
  1244. "servers": [
  1245. {
  1246. "name": "Global Zone (geo based)",
  1247. "url": "rtmp://ingest-global-a.switchboard.zone/live"
  1248. },
  1249. {
  1250. "name": "US Zone (geo based)",
  1251. "url": "rtmp://ingest-us.switchboard.zone/live"
  1252. },
  1253. {
  1254. "name": "US West 1 (South)",
  1255. "url": "rtmp://ingest-us-west.a.switchboard.zone/live"
  1256. },
  1257. {
  1258. "name": "US West 2 (North)",
  1259. "url": "rtmp://ingest-us-west.b.switchboard.zone/live"
  1260. },
  1261. {
  1262. "name": "US East 1 (North)",
  1263. "url": "rtmp://ingest-us-east.a.switchboard.zone/live"
  1264. },
  1265. {
  1266. "name": "US East 2 (South)",
  1267. "url": "rtmp://ingest-us-east.b.switchboard.zone/live"
  1268. },
  1269. {
  1270. "name": "US Central (North)",
  1271. "url": "rtmp://ingest-us-central.a.switchboard.zone/live"
  1272. },
  1273. {
  1274. "name": "South America East (São Paulo, BR)",
  1275. "url": "rtmp://ingest-sa-east.a.switchboard.zone/live"
  1276. },
  1277. {
  1278. "name": "Europe West (London, UK)",
  1279. "url": "rtmp://ingest-eu-west.a.switchboard.zone/live"
  1280. },
  1281. {
  1282. "name": "Europe North (Hamina, FI)",
  1283. "url": "rtmp://ingest-eu-north.a.switchboard.zone/live"
  1284. },
  1285. {
  1286. "name": "Australia Southeast (Sydney, AU)",
  1287. "url": "rtmp://ingest-au-southeast.a.switchboard.zone/live"
  1288. },
  1289. {
  1290. "name": "Asia East (Changhua County, TW)",
  1291. "url": "rtmp://ingest-as-east.a.switchboard.zone/live"
  1292. },
  1293. {
  1294. "name": "Asia Northeast (Tokyo, JP)",
  1295. "url": "rtmp://ingest-as-northeast.a.switchboard.zone/live"
  1296. },
  1297. {
  1298. "name": "Asia South (Mumbai, IN)",
  1299. "url": "rtmp://ingest-as-south.a.switchboard.zone/live"
  1300. }
  1301. ],
  1302. "recommended": {
  1303. "keyint": 2,
  1304. "max audio bitrate": 128,
  1305. "max video bitrate": 10000
  1306. }
  1307. },
  1308. {
  1309. "name": "Looch",
  1310. "common": false,
  1311. "servers": [
  1312. {
  1313. "name": "Primary Looch ingest server",
  1314. "url": "rtmp://ingest.looch.tv/live"
  1315. }
  1316. ],
  1317. "recommended": {
  1318. "keyint": 2,
  1319. "profile": "main",
  1320. "max video bitrate": 6000,
  1321. "max audio bitrate": 160
  1322. }
  1323. },
  1324. {
  1325. "name": "Eventials",
  1326. "servers": [
  1327. {
  1328. "name": "Default",
  1329. "url": "rtmp://live.eventials.com/eventialsLiveOrigin"
  1330. }
  1331. ],
  1332. "recommended": {
  1333. "keyint": 1,
  1334. "profile": "baseline",
  1335. "max video bitrate": 900,
  1336. "max audio bitrate": 192
  1337. }
  1338. },
  1339. {
  1340. "name": "Lahzenegar - StreamG | لحظه‌نگار - استریمجی",
  1341. "servers": [
  1342. {
  1343. "name": "Primary",
  1344. "url": "rtmp://rtmp.lahzecdn.com/pro"
  1345. },
  1346. {
  1347. "name": "Iran",
  1348. "url": "rtmp://rtmp-iran.lahzecdn.com/pro"
  1349. }
  1350. ],
  1351. "recommended": {
  1352. "keyint": 2,
  1353. "profile": "main",
  1354. "max video bitrate": 4000,
  1355. "max audio bitrate": 192
  1356. }
  1357. },
  1358. {
  1359. "name": "MyLive",
  1360. "servers": [
  1361. {
  1362. "name": "Default",
  1363. "url": "rtmp://stream.mylive.in.th/live"
  1364. }
  1365. ],
  1366. "recommended": {
  1367. "keyint": 2,
  1368. "profile": "main",
  1369. "max video bitrate": 7000,
  1370. "max audio bitrate": 192
  1371. }
  1372. },
  1373. {
  1374. "name": "Trovo",
  1375. "alt_names": ["Madcat"],
  1376. "servers": [
  1377. {
  1378. "name": "Default",
  1379. "url": "rtmp://livepush.trovo.live/live/"
  1380. }
  1381. ],
  1382. "recommended": {
  1383. "keyint": 2,
  1384. "max video bitrate": 9000,
  1385. "max audio bitrate": 160,
  1386. "x264opts": "scenecut=0"
  1387. }
  1388. },
  1389. {
  1390. "name": "Mixcloud",
  1391. "servers": [
  1392. {
  1393. "name": "Default",
  1394. "url": "rtmp://rtmp.mixcloud.com/broadcast"
  1395. }
  1396. ],
  1397. "recommended": {
  1398. "keyint": 2,
  1399. "max video bitrate": 6000,
  1400. "max audio bitrate": 320,
  1401. "x264opts": "scenecut=0"
  1402. }
  1403. },
  1404. {
  1405. "name": "SermonAudio Cloud",
  1406. "alt_names": [
  1407. "SermonAudio.com"
  1408. ],
  1409. "servers": [
  1410. {
  1411. "name": "Primary",
  1412. "url": "rtmp://webcast.sermonaudio.com/sa"
  1413. }
  1414. ],
  1415. "recommended": {
  1416. "max video bitrate": 2000,
  1417. "max audio bitrate": 128
  1418. }
  1419. },
  1420. {
  1421. "name": "Vimeo",
  1422. "servers": [
  1423. {
  1424. "name": "Default",
  1425. "url": "rtmp://rtmp.cloud.vimeo.com/live"
  1426. }
  1427. ]
  1428. },
  1429. {
  1430. "name": "Aparat",
  1431. "servers": [
  1432. {
  1433. "name": "Default",
  1434. "url": "rtmp://rtmp.cdn.asset.aparat.com:443/event"
  1435. }
  1436. ]
  1437. },
  1438. {
  1439. "name": "GameTips.TV",
  1440. "servers": [
  1441. {
  1442. "name": "Iran - Tehran | AsiaTech",
  1443. "url": "rtmp://rtmp.s2.gametips.tv:1935/live"
  1444. },
  1445. {
  1446. "name": "Netherlands - Amsterdam | Serverius",
  1447. "url": "rtmp://rtmp.s3.gametips.tv:1935/live"
  1448. },
  1449. {
  1450. "name": "Iran - Tehran | ParsOnline",
  1451. "url": "rtmp://rtmp.s4.gametips.tv:1935/live"
  1452. },
  1453. {
  1454. "name": "Iran - Tehran | AfraNet",
  1455. "url": "rtmp://rtmp.s5.gametips.tv:1935/live"
  1456. }
  1457. ]
  1458. },
  1459. {
  1460. "name": "KakaoTV",
  1461. "servers": [
  1462. {
  1463. "name": "Default",
  1464. "url": "rtmp://rtmp.play.kakao.com/kakaotv"
  1465. }
  1466. ],
  1467. "recommended": {
  1468. "max video bitrate": 8000,
  1469. "max audio bitrate": 192
  1470. }
  1471. },
  1472. {
  1473. "name": "Piczel.tv",
  1474. "servers": [
  1475. {
  1476. "name": "Default",
  1477. "url": "rtmp://piczel.tv:1935/live"
  1478. }
  1479. ],
  1480. "recommended": {
  1481. "max video bitrate": 5000
  1482. }
  1483. },
  1484. {
  1485. "name": "STAGE TEN",
  1486. "servers": [
  1487. {
  1488. "name": "STAGE TEN",
  1489. "url": "rtmps://app-rtmp.stageten.tv:443/stageten"
  1490. }
  1491. ],
  1492. "recommended": {
  1493. "keyint": 2,
  1494. "profile": "baseline",
  1495. "max video bitrate": 4000,
  1496. "max audio bitrate": 128
  1497. }
  1498. },
  1499. {
  1500. "name": "DLive",
  1501. "servers": [
  1502. {
  1503. "name": "Default",
  1504. "url": "rtmp://stream.dlive.tv/live"
  1505. }
  1506. ],
  1507. "recommend": {
  1508. "keyint": 2,
  1509. "max video bitrate": 6000,
  1510. "max audio bitrate": 160
  1511. }
  1512. },
  1513. {
  1514. "name": "Lightcast.com",
  1515. "servers": [
  1516. {
  1517. "name": "North America / East",
  1518. "url": "rtmp://us-east.live.lightcast.com/202E1F/default"
  1519. },
  1520. {
  1521. "name": "North America / West",
  1522. "url": "rtmp://us-west.live.lightcast.com/202E1F/default"
  1523. },
  1524. {
  1525. "name": "Europe / Amsterdam",
  1526. "url": "rtmp://europe.live.lightcast.com/202E1F/default"
  1527. },
  1528. {
  1529. "name": "Europe / Frankfurt",
  1530. "url": "rtmp://europe-fra.live.lightcast.com/202E1F/default"
  1531. },
  1532. {
  1533. "name": "Europe / Stockholm",
  1534. "url": "rtmp://europe-sto.live.lightcast.com/202E1F/default"
  1535. },
  1536. {
  1537. "name": "Asia / Hong Kong",
  1538. "url": "rtmp://asia.live.lightcast.com/202E1F/default"
  1539. },
  1540. {
  1541. "name": "Australia / Sydney",
  1542. "url": "rtmp://australia.live.lightcast.com/202E1F/default"
  1543. }
  1544. ],
  1545. "recommend": {
  1546. "keyint": 2,
  1547. "max video bitrate": 6000,
  1548. "max audio bitrate": 160
  1549. }
  1550. },
  1551. {
  1552. "name": "Bongacams",
  1553. "servers": [
  1554. {
  1555. "name": "Automatic / Default",
  1556. "url": "rtmp://auto.origin.gnsbc.com:1934/live"
  1557. },
  1558. {
  1559. "name": "Automatic / Backup",
  1560. "url": "rtmp://origin.bcvidorigin.com:1934/live"
  1561. },
  1562. {
  1563. "name": "Europe",
  1564. "url": "rtmp://z-eu.origin.gnsbc.com:1934/live"
  1565. },
  1566. {
  1567. "name": "North America",
  1568. "url": "rtmp://z-us.origin.gnsbc.com:1934/live"
  1569. }
  1570. ],
  1571. "recommend": {
  1572. "keyint": 2,
  1573. "max video bitrate": 6000,
  1574. "max audio bitrate": 192,
  1575. "bframes": 0,
  1576. "x264opts": "tune=zerolatency"
  1577. }
  1578. },
  1579. {
  1580. "name": "show-it.tv",
  1581. "servers": [
  1582. {
  1583. "name": "Default",
  1584. "url": "rtmp://stream-1.show-it.tv:1935/live"
  1585. }
  1586. ],
  1587. "recommend": {
  1588. "max video bitrate": 6000,
  1589. "max audio bitrate": 192
  1590. }
  1591. },
  1592. {
  1593. "name": "Chathostess",
  1594. "servers": [
  1595. {
  1596. "name": "Chathostess - Default",
  1597. "url": "rtmp://wowza01.foobarweb.com/cmschatsys_video"
  1598. },
  1599. {
  1600. "name": "Chathostess - Backup",
  1601. "url": "rtmp://wowza05.foobarweb.com/cmschatsys_video"
  1602. }
  1603. ],
  1604. "recommended": {
  1605. "keyint": 2,
  1606. "max video bitrate": 3600,
  1607. "max audio bitrate": 128
  1608. }
  1609. },
  1610. {
  1611. "name": "Camplace",
  1612. "servers": [
  1613. {
  1614. "name": "Camplace - Default",
  1615. "url": "rtmp://rtmp.camplace.com"
  1616. }
  1617. ],
  1618. "recommend": {
  1619. "keyint": 2,
  1620. "max video bitrate": 3000,
  1621. "max audio bitrate": 128
  1622. }
  1623. },
  1624. {
  1625. "name": "OnlyFans.com",
  1626. "servers": [
  1627. {
  1628. "name": "USA",
  1629. "url": "rtmp://route0.onlyfans.com/live"
  1630. },
  1631. {
  1632. "name": "Europe",
  1633. "url": "rtmp://route0-dc2.onlyfans.com/live"
  1634. }
  1635. ],
  1636. "recommend": {
  1637. "keyint": 2,
  1638. "profile": "main",
  1639. "max video bitrate": 2500,
  1640. "max audio bitrate": 192,
  1641. "bframes": 0,
  1642. "x264opts": "tune=zerolatency"
  1643. }
  1644. },
  1645. {
  1646. "name": "YouNow",
  1647. "common": false,
  1648. "servers": [
  1649. {
  1650. "name": "younow.com",
  1651. "url": "https://signaling-api.younow-prod.video.propsproject.com/api/v1/ingest/server/"
  1652. }
  1653. ],
  1654. "recommended": {
  1655. "keyint": 2,
  1656. "output": "ftl_output",
  1657. "max audio bitrate": 160,
  1658. "max video bitrate": 7000,
  1659. "profile": "main",
  1660. "bframes": 0
  1661. }
  1662. },
  1663. {
  1664. "name": "Steam",
  1665. "common": false,
  1666. "servers": [
  1667. {
  1668. "name": "Chicago, US",
  1669. "url": "rtmp://ingest-any-ord1.broadcast.steamcontent.com/app"
  1670. },
  1671. {
  1672. "name": "Seattle, US",
  1673. "url": "rtmp://ingest-any-sea1.broadcast.steamcontent.com/app"
  1674. },
  1675. {
  1676. "name": "Los Angeles, US",
  1677. "url": "rtmp://ingest-any-lax1.broadcast.steamcontent.com/app"
  1678. },
  1679. {
  1680. "name": "Washington DC, US",
  1681. "url": "rtmp://ingest-any-iad1.broadcast.steamcontent.com/app"
  1682. },
  1683. {
  1684. "name": "Frankfurt, DE",
  1685. "url": "rtmp://ingest-any-fra1.broadcast.steamcontent.com/app"
  1686. },
  1687. {
  1688. "name": "London, UK",
  1689. "url": "rtmp://ingest-any-lhr1.broadcast.steamcontent.com/app"
  1690. },
  1691. {
  1692. "name": "Stockholm, SE",
  1693. "url": "rtmp://ingest-any-sto1.broadcast.steamcontent.com/app"
  1694. },
  1695. {
  1696. "name": "Tokyo, JP",
  1697. "url": "rtmp://ingest-any-tyo1.broadcast.steamcontent.com/app"
  1698. },
  1699. {
  1700. "name": "Hong Kong, HK",
  1701. "url": "rtmp://ingest-any-hkg1.broadcast.steamcontent.com/app"
  1702. },
  1703. {
  1704. "name": "Singapore, SG",
  1705. "url": "rtmp://ingest-any-sgp1.broadcast.steamcontent.com/app"
  1706. },
  1707. {
  1708. "name": "Sydney, AU",
  1709. "url": "rtmp://ingest-any-syd1.broadcast.steamcontent.com/app"
  1710. },
  1711. {
  1712. "name": "São Paulo, BR",
  1713. "url": "rtmp://ingest-any-gru1.broadcast.steamcontent.com/app"
  1714. }
  1715. ],
  1716. "recommended": {
  1717. "keyint": 2,
  1718. "profile": "high",
  1719. "max video bitrate": 7000,
  1720. "max audio bitrate": 128
  1721. }
  1722. },
  1723. {
  1724. "name": "Stars.AVN.com",
  1725. "servers": [
  1726. {
  1727. "name": "Default",
  1728. "url": "rtmp://alpha.gateway.stars.avn.com/live"
  1729. }
  1730. ],
  1731. "recommended": {
  1732. "keyint": 2,
  1733. "profile": "main",
  1734. "max video bitrate": 2500,
  1735. "max audio bitrate": 192,
  1736. "bframes": 0,
  1737. "x264opts": "tune=zerolatency"
  1738. }
  1739. },
  1740. {
  1741. "name": "Konduit.live",
  1742. "servers": [
  1743. {
  1744. "name": "Default",
  1745. "url": "rtmp://rtmp.konduit.live/live"
  1746. }
  1747. ],
  1748. "recommended": {
  1749. "keyint": 2,
  1750. "x264opts": "scenecut=0"
  1751. }
  1752. },
  1753. {
  1754. "name": "Uncanny.gg",
  1755. "servers": [
  1756. {
  1757. "name": "Default",
  1758. "url": "rtmp://stream.uncanny.gg/fortnite"
  1759. }
  1760. ],
  1761. "recommended": {
  1762. "keyint": 2,
  1763. "profile": "main",
  1764. "max video bitrate": 10000,
  1765. "max audio bitrate": 192
  1766. }
  1767. },
  1768. {
  1769. "name": "Whalebone.tv",
  1770. "servers": [
  1771. {
  1772. "name": "Automatic",
  1773. "url": "rtmp://live.whalebone.tv/live"
  1774. },
  1775. {
  1776. "name": "Tokyo, Japan",
  1777. "url": "rtmp://ap-northeast.live.whalebone.tv/live"
  1778. },
  1779. {
  1780. "name": "Frankfurt, Germany",
  1781. "url": "rtmp://eu-central.live.whalebone.tv/live"
  1782. },
  1783. {
  1784. "name": "London, United Kingdom",
  1785. "url": "rtmp://eu-west.live.whalebone.tv/live"
  1786. },
  1787. {
  1788. "name": "São Paulo, Brazil",
  1789. "url": "rtmp://sa-east.live.whalebone.tv/live"
  1790. },
  1791. {
  1792. "name": "North Virgina, United States",
  1793. "url": "rtmp://us-east.live.whalebone.tv/live"
  1794. },
  1795. {
  1796. "name": "Oregon, United States",
  1797. "url": "rtmp://us-west.live.whalebone.tv/live"
  1798. }
  1799. ]
  1800. },
  1801. {
  1802. "name": "LOCO",
  1803. "servers": [
  1804. {
  1805. "name": "Default",
  1806. "url": "rtmp://ivory-ingest.getloconow.com:1935/stream"
  1807. }
  1808. ],
  1809. "recommended": {
  1810. "keyint": 2
  1811. }
  1812. },
  1813. {
  1814. "name": "niconico, premium member (ニコニコ生放送 プレミアム会員)",
  1815. "servers": [
  1816. {
  1817. "name": "Default",
  1818. "url": "rtmp://aliveorigin.dmc.nico/named_input"
  1819. }
  1820. ],
  1821. "recommended": {
  1822. "keyint": 2,
  1823. "profile": "high",
  1824. "max audio bitrate": 192,
  1825. "max video bitrate": 5808,
  1826. "x264opts": "tune=zerolatency"
  1827. }
  1828. },
  1829. {
  1830. "name": "niconico, free member (ニコニコ生放送 一般会員)",
  1831. "servers": [
  1832. {
  1833. "name": "Default",
  1834. "url": "rtmp://aliveorigin.dmc.nico/named_input"
  1835. }
  1836. ],
  1837. "recommended": {
  1838. "keyint": 2,
  1839. "profile": "high",
  1840. "max audio bitrate": 96,
  1841. "max video bitrate": 904,
  1842. "x264opts": "tune=zerolatency"
  1843. }
  1844. },
  1845. {
  1846. "name": "WASD.TV",
  1847. "servers": [
  1848. {
  1849. "name": "Automatic",
  1850. "url": "rtmp://push.rtmp.wasd.tv/live"
  1851. },
  1852. {
  1853. "name": "Russia, Moscow",
  1854. "url": "rtmp://ru-moscow.rtmp.wasd.tv/live"
  1855. },
  1856. {
  1857. "name": "Germany, Frankfurt",
  1858. "url": "rtmp://de-frankfurt.rtmp.wasd.tv/live"
  1859. },
  1860. {
  1861. "name": "Finland, Helsinki",
  1862. "url": "rtmp://fi-helsinki.rtmp.wasd.tv/live"
  1863. }
  1864. ],
  1865. "recommended": {
  1866. "keyint": 2,
  1867. "max video bitrate": 10000,
  1868. "max audio bitrate": 192
  1869. }
  1870. },
  1871. {
  1872. "name": "VirtWish",
  1873. "servers": [
  1874. {
  1875. "name": "Default",
  1876. "url": "rtmp://rtmp.virtwish.com/live"
  1877. }
  1878. ]
  1879. },
  1880. {
  1881. "name": "Nimo TV",
  1882. "servers": [
  1883. {
  1884. "name": "Global:1",
  1885. "url": "rtmp://wspush.rtmp.nimo.tv/live/"
  1886. },
  1887. {
  1888. "name": "Global:2",
  1889. "url": "rtmp://txpush.rtmp.nimo.tv/live/"
  1890. },
  1891. {
  1892. "name": "Global:3",
  1893. "url": "rtmp://alpush.rtmp.nimo.tv/live/"
  1894. }
  1895. ],
  1896. "recommended": {
  1897. "keyint": 2,
  1898. "max video bitrate": 6000,
  1899. "max audio bitrate": 160
  1900. }
  1901. },
  1902. {
  1903. "name": "XLoveCam.com",
  1904. "servers": [
  1905. {
  1906. "name": "Europe(main)",
  1907. "url": "rtmp://nl.eu.stream.xlove.com/performer-origin"
  1908. },
  1909. {
  1910. "name": "Europe(Romania)",
  1911. "url": "rtmp://ro.eu.stream.xlove.com/performer-origin"
  1912. },
  1913. {
  1914. "name": "Europe(Russia)",
  1915. "url": "rtmp://ru.eu.stream.xlove.com/performer-origin"
  1916. },
  1917. {
  1918. "name": "North America(US East)",
  1919. "url": "rtmp://usec.na.stream.xlove.com/performer-origin"
  1920. },
  1921. {
  1922. "name": "North America(US West)",
  1923. "url": "rtmp://uswc.na.stream.xlove.com/performer-origin"
  1924. },
  1925. {
  1926. "name": "North America(Canada)",
  1927. "url": "rtmp://ca.na.stream.xlove.com/performer-origin"
  1928. },
  1929. {
  1930. "name": "South America",
  1931. "url": "rtmp://co.sa.stream.xlove.com/performer-origin"
  1932. },
  1933. {
  1934. "name": "Asia",
  1935. "url": "rtmp://sg.as.stream.xlove.com/performer-origin"
  1936. }
  1937. ],
  1938. "recommended": {
  1939. "x264opts": "scenecut=0"
  1940. }
  1941. },
  1942. {
  1943. "name": "AngelThump",
  1944. "servers": [
  1945. {
  1946. "name": "Auto",
  1947. "url": "rtmp://ingest.angelthump.com/live"
  1948. },
  1949. {
  1950. "name": "New York 3",
  1951. "url": "rtmp://nyc-ingest.angelthump.com:1935/live"
  1952. },
  1953. {
  1954. "name": "San Francisco 2",
  1955. "url": "rtmp://sfo-ingest.angelthump.com:1935/live"
  1956. },
  1957. {
  1958. "name": "Singapore 1",
  1959. "url": "rtmp://sgp-ingest.angelthump.com:1935/live"
  1960. },
  1961. {
  1962. "name": "London 1",
  1963. "url": "rtmp://lon-ingest.angelthump.com:1935/live"
  1964. },
  1965. {
  1966. "name": "Frankfurt 1",
  1967. "url": "rtmp://fra-ingest.angelthump.com:1935/live"
  1968. },
  1969. {
  1970. "name": "Toronto 1",
  1971. "url": "rtmp://tor-ingest.angelthump.com:1935/live"
  1972. },
  1973. {
  1974. "name": "Bangalore 1",
  1975. "url": "rtmp://blr-ingest.angelthump.com:1935/live"
  1976. },
  1977. {
  1978. "name": "Amsterdam 3",
  1979. "url": "rtmp://ams-ingest.angelthump.com:1935/live"
  1980. }
  1981. ],
  1982. "recommended": {
  1983. "keyint": 2,
  1984. "profile": "high",
  1985. "max video bitrate": 3500,
  1986. "max audio bitrate": 160
  1987. }
  1988. },
  1989. {
  1990. "name": "weabook.live",
  1991. "servers": [
  1992. {
  1993. "name": "N.Virgina, US",
  1994. "url": "rtmp://us-api.weabook.live/live"
  1995. },
  1996. {
  1997. "name": "Singapore, SG",
  1998. "url": "rtmp://sg-api.weabook.live/live"
  1999. },
  2000. {
  2001. "name": "Tokyo, JP",
  2002. "url": "rtmp://jp-api.weabook.live/live"
  2003. },
  2004. {
  2005. "name": "Premium Streaming",
  2006. "url": "rtmp://premium.rtmp.weabook.live/live"
  2007. }
  2008. ],
  2009. "recommended": {
  2010. "keyint": 2,
  2011. "max audio bitrate": 256,
  2012. "max video bitrate": 20480
  2013. }
  2014. }
  2015. ]
  2016. }