| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483 |
- {
- "$schema": "schema/service-schema-v5.json",
- "format_version": 5,
- "services": [
- {
- "name": "Twitch",
- "common": true,
- "stream_key_link": "https://dashboard.twitch.tv/settings/stream",
- "multitrack_video_configuration_url": "https://ingest.twitch.tv/api/v3/GetClientConfiguration",
- "multitrack_video_name": "Enhanced Broadcasting",
- "multitrack_video_learn_more_link": "https://help.twitch.tv/s/article/multiple-encodes",
- "servers": [
- {
- "name": "Asia: Hong Kong",
- "url": "rtmp://live-hkg.twitch.tv/app"
- },
- {
- "name": "Asia: Seoul, South Korea",
- "url": "rtmp://live-sel.twitch.tv/app"
- },
- {
- "name": "Asia: Singapore",
- "url": "rtmp://live-sin.twitch.tv/app"
- },
- {
- "name": "Asia: Taipei, Taiwan",
- "url": "rtmp://live-tpe.twitch.tv/app"
- },
- {
- "name": "Asia: Tokyo, Japan",
- "url": "rtmp://live-tyo.twitch.tv/app"
- },
- {
- "name": "Australia: Sydney",
- "url": "rtmp://live-syd.twitch.tv/app"
- },
- {
- "name": "EU: Amsterdam, NL",
- "url": "rtmp://live-ams.twitch.tv/app"
- },
- {
- "name": "EU: Berlin, DE",
- "url": "rtmp://live-ber.twitch.tv/app"
- },
- {
- "name": "Europe: Copenhagen, DK",
- "url": "rtmp://live-cph.twitch.tv/app"
- },
- {
- "name": "EU: Frankfurt, DE",
- "url": "rtmp://live-fra.twitch.tv/app"
- },
- {
- "name": "EU: Helsinki, FI",
- "url": "rtmp://live-hel.twitch.tv/app"
- },
- {
- "name": "EU: Lisbon, Portugal",
- "url": "rtmp://live-lis.twitch.tv/app"
- },
- {
- "name": "EU: London, UK",
- "url": "rtmp://live-lhr.twitch.tv/app"
- },
- {
- "name": "EU: Madrid, Spain",
- "url": "rtmp://live-mad.twitch.tv/app"
- },
- {
- "name": "EU: Marseille, FR",
- "url": "rtmp://live-mrs.twitch.tv/app"
- },
- {
- "name": "EU: Milan, Italy",
- "url": "rtmp://live-mil.twitch.tv/app"
- },
- {
- "name": "EU: Norway, Oslo",
- "url": "rtmp://live-osl.twitch.tv/app"
- },
- {
- "name": "EU: Paris, FR",
- "url": "rtmp://live-cdg.twitch.tv/app"
- },
- {
- "name": "EU: Prague, CZ",
- "url": "rtmp://live-prg.twitch.tv/app"
- },
- {
- "name": "EU: Stockholm, SE",
- "url": "rtmp://live-arn.twitch.tv/app"
- },
- {
- "name": "EU: Vienna, Austria",
- "url": "rtmp://live-vie.twitch.tv/app"
- },
- {
- "name": "EU: Warsaw, Poland",
- "url": "rtmp://live-waw.twitch.tv/app"
- },
- {
- "name": "NA: Mexico City",
- "url": "rtmp://live-qro.twitch.tv/app"
- },
- {
- "name": "NA: Quebec, Canada",
- "url": "rtmp://live-ymq.twitch.tv/app"
- },
- {
- "name": "NA: Toronto, Canada",
- "url": "rtmp://live-yto.twitch.tv/app"
- },
- {
- "name": "South America: Argentina",
- "url": "rtmp://live-eze.twitch.tv/app"
- },
- {
- "name": "South America: Chile",
- "url": "rtmp://live-scl.twitch.tv/app"
- },
- {
- "name": "South America: Lima, Peru",
- "url": "rtmp://live-lim.twitch.tv/app"
- },
- {
- "name": "South America: Medellin, Colombia",
- "url": "rtmp://live-mde.twitch.tv/app"
- },
- {
- "name": "South America: Rio de Janeiro, Brazil",
- "url": "rtmp://live-rio.twitch.tv/app"
- },
- {
- "name": "South America: Sao Paulo, Brazil",
- "url": "rtmp://live-sao.twitch.tv/app"
- },
- {
- "name": "US Central: Dallas, TX",
- "url": "rtmp://live-dfw.twitch.tv/app"
- },
- {
- "name": "US Central: Denver, CO",
- "url": "rtmp://live-den.twitch.tv/app"
- },
- {
- "name": "US Central: Houston, TX",
- "url": "rtmp://live-hou.twitch.tv/app"
- },
- {
- "name": "US Central: Salt Lake City, UT",
- "url": "rtmp://live-slc.twitch.tv/app"
- },
- {
- "name": "US East: Ashburn, VA",
- "url": "rtmp://live-iad.twitch.tv/app"
- },
- {
- "name": "US East: Atlanta, GA",
- "url": "rtmp://live-atl.twitch.tv/app"
- },
- {
- "name": "US East: Chicago",
- "url": "rtmp://live-ord.twitch.tv/app"
- },
- {
- "name": "US East: Miami, FL",
- "url": "rtmp://live-mia.twitch.tv/app"
- },
- {
- "name": "US East: New York, NY",
- "url": "rtmp://live-jfk.twitch.tv/app"
- },
- {
- "name": "US West: Los Angeles, CA",
- "url": "rtmp://live-lax.twitch.tv/app"
- },
- {
- "name": "US West: Phoenix, AZ",
- "url": "rtmp://live-phx.twitch.tv/app"
- },
- {
- "name": "US West: Portland, Oregon",
- "url": "rtmp://live-pdx.twitch.tv/app"
- },
- {
- "name": "US West: San Francisco, CA",
- "url": "rtmp://live-sfo.twitch.tv/app"
- },
- {
- "name": "US West: San Jose, CA",
- "url": "rtmp://live-sjc.twitch.tv/app"
- },
- {
- "name": "US West: Seattle, WA",
- "url": "rtmp://live-sea.twitch.tv/app"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 6000,
- "max audio bitrate": 320,
- "x264opts": "scenecut=0"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "YouTube - HLS",
- "common": false,
- "more_info_link": "https://developers.google.com/youtube/v3/live/guides/ingestion-protocol-comparison",
- "stream_key_link": "https://www.youtube.com/live_dashboard",
- "protocol": "HLS",
- "supported video codecs": [
- "h264",
- "hevc"
- ],
- "servers": [
- {
- "name": "Primary YouTube ingest server",
- "url": "https://a.upload.youtube.com/http_upload_hls?cid={stream_key}©=0&file=out.m3u8"
- },
- {
- "name": "Backup YouTube ingest server",
- "url": "https://b.upload.youtube.com/http_upload_hls?cid={stream_key}©=1&file=out.m3u8"
- }
- ],
- "recommended": {
- "keyint": 2,
- "output": "ffmpeg_hls_muxer",
- "max video bitrate": 51000,
- "max audio bitrate": 160
- }
- },
- {
- "name": "YouTube - RTMPS",
- "common": true,
- "stream_key_link": "https://www.youtube.com/live_dashboard",
- "alt_names": [
- "YouTube / YouTube Gaming",
- "YouTube - RTMP",
- "YouTube - RTMPS (Beta)"
- ],
- "supported video codecs": [
- "h264",
- "hevc",
- "av1"
- ],
- "servers": [
- {
- "name": "Primary YouTube ingest server",
- "url": "rtmps://a.rtmps.youtube.com:443/live2"
- },
- {
- "name": "Backup YouTube ingest server",
- "url": "rtmps://b.rtmps.youtube.com:443/live2?backup=1"
- },
- {
- "name": "Primary YouTube ingest server (legacy RTMP)",
- "url": "rtmp://a.rtmp.youtube.com/live2"
- },
- {
- "name": "Backup YouTube ingest server (legacy RTMP)",
- "url": "rtmp://b.rtmp.youtube.com/live2?backup=1"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 51000,
- "max audio bitrate": 160
- }
- },
- {
- "name": "Loola.tv",
- "common": false,
- "servers": [
- {
- "name": "US East: Virginia",
- "url": "rtmp://rtmp.loola.tv/push"
- },
- {
- "name": "EU Central: Germany",
- "url": "rtmp://rtmp-eu.loola.tv/push"
- },
- {
- "name": "South America: Brazil",
- "url": "rtmp://rtmp-sa.loola.tv/push"
- },
- {
- "name": "Asia/Pacific: Singapore",
- "url": "rtmp://rtmp-sg.loola.tv/push"
- },
- {
- "name": "Middle East: Bahrain",
- "url": "rtmp://rtmp-me.loola.tv/push"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "high",
- "max video bitrate": 2500,
- "max audio bitrate": 160,
- "bframes": 2,
- "x264opts": "scenecut=0"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Lovecast",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://live-a.lovecastapp.com:5222/app"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "main",
- "max video bitrate": 8000,
- "max audio bitrate": 192,
- "supported resolutions": [
- "1920x1080",
- "1280x720"
- ],
- "max fps": 30
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Luzento.com - RTMP",
- "stream_key_link": "https://cms.luzento.com/dashboard/stream-key?from=OBS",
- "servers": [
- {
- "name": "Primary",
- "url": "rtmp://ingest.luzento.com/live"
- },
- {
- "name": "Primary (Test)",
- "url": "rtmp://ingest.luzento.com/test"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 6000,
- "max audio bitrate": 256,
- "bframes": 2,
- "x264opts": "scenecut=0"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Web.TV",
- "servers": [
- {
- "name": "Primary",
- "url": "rtmp://live3.origins.web.tv/liveext"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "main",
- "max video bitrate": 3500,
- "max audio bitrate": 160
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "GoodGame.ru",
- "servers": [
- {
- "name": "Моscow",
- "url": "rtmp://msk.goodgame.ru:1940/live"
- }
- ],
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Vaughn Live / iNSTAGIB",
- "servers": [
- {
- "name": "US: Vint Hill, VA",
- "url": "rtmp://live-iad.vaughnsoft.net/live"
- },
- {
- "name": "US: Vint Hill, VA #2",
- "url": "rtmp://live-iad2.vaughnsoft.net/live"
- },
- {
- "name": "US: Dallas, TX",
- "url": "rtmp://live-dfw.vaughnsoft.net/live"
- },
- {
- "name": "US: Denver, CO",
- "url": "rtmp://live-den.vaughnsoft.net/live"
- },
- {
- "name": "US: New York, NY",
- "url": "rtmp://live-nyc.vaughnsoft.net/live"
- },
- {
- "name": "US: Miami, FL",
- "url": "rtmp://live-mia.vaughnsoft.net/live"
- },
- {
- "name": "US: Seattle, WA",
- "url": "rtmp://live-sea.vaughnsoft.net/live"
- },
- {
- "name": "CA: Toronto",
- "url": "rtmp://live-tor.vaughnsoft.net/live"
- },
- {
- "name": "EU: Amsterdam, NL",
- "url": "rtmp://live-ams.vaughnsoft.net/live"
- },
- {
- "name": "EU: London, UK",
- "url": "rtmp://live-lhr.vaughnsoft.net/live"
- },
- {
- "name": "EU: Paris, FR",
- "url": "rtmp://live-lhr.vaughnsoft.net/live"
- },
- {
- "name": "Tokyo, JP",
- "url": "rtmp://live-lhr.vaughnsoft.net/live"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 15000,
- "max audio bitrate": 320
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Breakers.TV",
- "servers": [
- {
- "name": "US: Vint Hill, VA",
- "url": "rtmp://live-iad.vaughnsoft.net/live"
- },
- {
- "name": "US: Vint Hill, VA #2",
- "url": "rtmp://live-iad2.vaughnsoft.net/live"
- },
- {
- "name": "US: Dallas, TX",
- "url": "rtmp://live-dfw.vaughnsoft.net/live"
- },
- {
- "name": "US: Denver, CO",
- "url": "rtmp://live-den.vaughnsoft.net/live"
- },
- {
- "name": "US: New York, NY",
- "url": "rtmp://live-nyc.vaughnsoft.net/live"
- },
- {
- "name": "US: Miami, FL",
- "url": "rtmp://live-mia.vaughnsoft.net/live"
- },
- {
- "name": "US: Seattle, WA",
- "url": "rtmp://live-sea.vaughnsoft.net/live"
- },
- {
- "name": "CA: Toronto",
- "url": "rtmp://live-tor.vaughnsoft.net/live"
- },
- {
- "name": "EU: Amsterdam, NL",
- "url": "rtmp://live-ams.vaughnsoft.net/live"
- },
- {
- "name": "EU: London, UK",
- "url": "rtmp://live-lhr.vaughnsoft.net/live"
- },
- {
- "name": "EU: Paris, FR",
- "url": "rtmp://live-lhr.vaughnsoft.net/live"
- },
- {
- "name": "Tokyo, JP",
- "url": "rtmp://live-lhr.vaughnsoft.net/live"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 15000,
- "max audio bitrate": 320
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Facebook Live",
- "common": true,
- "stream_key_link": "https://www.facebook.com/live/producer?ref=OBS",
- "servers": [
- {
- "name": "Default",
- "url": "rtmps://rtmp-api.facebook.com:443/rtmp/"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "main",
- "supported resolutions": [
- "1920x1080",
- "1280x720",
- "852x480",
- "640x360"
- ],
- "bitrate matrix": [
- {
- "res": "640x360",
- "fps": 30,
- "max bitrate": 1000
- },
- {
- "res": "640x360",
- "fps": 60,
- "max bitrate": 1500
- },
- {
- "res": "852x480",
- "fps": 30,
- "max bitrate": 2000
- },
- {
- "res": "852x480",
- "fps": 60,
- "max bitrate": 3000
- },
- {
- "res": "1280x720",
- "fps": 30,
- "max bitrate": 4000
- },
- {
- "res": "1280x720",
- "fps": 60,
- "max bitrate": 6000
- },
- {
- "res": "1920x1080",
- "fps": 30,
- "max bitrate": 6000
- },
- {
- "res": "1920x1080",
- "fps": 60,
- "max bitrate": 9000
- }
- ],
- "max fps": 60,
- "max video bitrate": 9000,
- "max audio bitrate": 128
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Restream.io",
- "alt_names": [
- "Restream.io - RTMP",
- "Restream.io - FTL"
- ],
- "common": true,
- "stream_key_link": "https://restream.io/settings/streaming-setup?from=OBS",
- "servers": [
- {
- "name": "Autodetect",
- "url": "rtmp://live.restream.io/live"
- },
- {
- "name": "EU-West (London, GB)",
- "url": "rtmp://london.restream.io/live"
- },
- {
- "name": "EU-West (Amsterdam, NL)",
- "url": "rtmp://amsterdam.restream.io/live"
- },
- {
- "name": "EU-West (Paris, FR)",
- "url": "rtmp://paris.restream.io/live"
- },
- {
- "name": "EU-Central (Frankfurt, DE)",
- "url": "rtmp://frankfurt.restream.io/live"
- },
- {
- "name": "EU-South (Madrid, Spain)",
- "url": "rtmp://madrid.restream.io/live"
- },
- {
- "name": "Turkey (Istanbul)",
- "url": "rtmp://istanbul.restream.io/live"
- },
- {
- "name": "US-West (Seattle, WA)",
- "url": "rtmp://seattle.restream.io/live"
- },
- {
- "name": "US-West (San Jose, CA)",
- "url": "rtmp://sanjose.restream.io/live"
- },
- {
- "name": "US-Central (Dallas, TX)",
- "url": "rtmp://dallas.restream.io/live"
- },
- {
- "name": "US-East (Chicago, IL)",
- "url": "rtmp://chicago.restream.io/live"
- },
- {
- "name": "US-East (New York, NY)",
- "url": "rtmp://newyork.restream.io/live"
- },
- {
- "name": "US-East (Washington, DC)",
- "url": "rtmp://washington.restream.io/live"
- },
- {
- "name": "NA-East (Toronto, Canada)",
- "url": "rtmp://toronto.restream.io/live"
- },
- {
- "name": "SA (Saint Paul, Brazil)",
- "url": "rtmp://saopaulo.restream.io/live"
- },
- {
- "name": "India (Bangalore)",
- "url": "rtmp://bangalore.restream.io/live"
- },
- {
- "name": "Asia (Hong Kong)",
- "url": "rtmp://hongkong.restream.io/live"
- },
- {
- "name": "Asia (Singapore)",
- "url": "rtmp://singapore.restream.io/live"
- },
- {
- "name": "Asia (Seoul, South Korea)",
- "url": "rtmp://seoul.restream.io/live"
- },
- {
- "name": "Asia (Tokyo, Japan)",
- "url": "rtmp://tokyo.restream.io/live"
- },
- {
- "name": "Australia (Sydney)",
- "url": "rtmp://sydney.restream.io/live"
- }
- ],
- "recommended": {
- "keyint": 2
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Castr.io",
- "servers": [
- {
- "name": "US-East (Chicago, IL)",
- "url": "rtmp://cg.castr.io/static"
- },
- {
- "name": "US-East (New York, NY)",
- "url": "rtmp://ny.castr.io/static"
- },
- {
- "name": "US-East (Miami, FL)",
- "url": "rtmp://mi.castr.io/static"
- },
- {
- "name": "US-West (Seattle, WA)",
- "url": "rtmp://se.castr.io/static"
- },
- {
- "name": "US-West (Los Angeles, CA)",
- "url": "rtmp://la.castr.io/static"
- },
- {
- "name": "US-Central (Dallas, TX)",
- "url": "rtmp://da.castr.io/static"
- },
- {
- "name": "NA-East (Toronto, CA)",
- "url": "rtmp://qc.castr.io/static"
- },
- {
- "name": "Mexico",
- "url": "rtmp://mexico.castr.io/static"
- },
- {
- "name": "Sao Paulo, BR",
- "url": "rtmp://br.castr.io/static"
- },
- {
- "name": "Colombia",
- "url": "rtmp://bogota.castr.io/static"
- },
- {
- "name": "Santiago, Chile",
- "url": "rtmp://santiago.castr.io/static"
- },
- {
- "name": "Istanbul, TR",
- "url": "rtmp://istanbul.castr.io/static"
- },
- {
- "name": "Tel Aviv, IL",
- "url": "rtmp://telaviv.castr.io/static"
- },
- {
- "name": "EU-West (London, UK)",
- "url": "rtmp://uk.castr.io/static"
- },
- {
- "name": "EU-West (Paris, FR)",
- "url": "rtmp://paris.castr.io/static"
- },
- {
- "name": "EU-West (Madrid, ES)",
- "url": "rtmp://madrid.castr.io/static"
- },
- {
- "name": "EU-Central (Frankfurt, DE)",
- "url": "rtmp://fr.castr.io/static"
- },
- {
- "name": "EU-Central (Milan, IT)",
- "url": "rtmp://milan.castr.io/static"
- },
- {
- "name": "EU-North (Stockholm, SE)",
- "url": "rtmp://stockholm.castr.io/static"
- },
- {
- "name": "EU-North (Copenhagen, DK)",
- "url": "rtmp://copenhagen.castr.io/static"
- },
- {
- "name": "Russia (Moscow)",
- "url": "rtmp://ru.castr.io/static"
- },
- {
- "name": "Asia (Singapore)",
- "url": "rtmp://sg.castr.io/static"
- },
- {
- "name": "Asia (Hong Kong, HK)",
- "url": "rtmp://hongkong.castr.io/static"
- },
- {
- "name": "Asia (India)",
- "url": "rtmp://in.castr.io/static"
- },
- {
- "name": "Australia (Sydney)",
- "url": "rtmp://au.castr.io/static"
- },
- {
- "name": "UAE (Dubai)",
- "url": "rtmp://dubai.castr.io/static"
- },
- {
- "name": "Africa (Johannesburg, ZA)",
- "url": "rtmp://southafrica.castr.io/static"
- },
- {
- "name": "Africa (Lagos, NG)",
- "url": "rtmp://lagos.castr.io/static"
- },
- {
- "name": "US Central",
- "url": "rtmp://us-central.castr.io/static"
- },
- {
- "name": "US West",
- "url": "rtmp://us-west.castr.io/static"
- },
- {
- "name": "US East",
- "url": "rtmp://us-east.castr.io/static"
- },
- {
- "name": "US South",
- "url": "rtmp://us-south.castr.io/static"
- },
- {
- "name": "South America",
- "url": "rtmp://south-am.castr.io/static"
- },
- {
- "name": "EU Central",
- "url": "rtmp://eu-central.castr.io/static"
- },
- {
- "name": "Singapore",
- "url": "rtmp://sg-central.castr.io/static"
- }
- ],
- "recommended": {
- "keyint": 2
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Boomstream",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://live.boomstream.com/live"
- }
- ],
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Meridix Live Sports Platform",
- "servers": [
- {
- "name": "Primary",
- "url": "rtmp://publish.meridix.com/live"
- }
- ],
- "recommended": {
- "max video bitrate": 3500
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "AfreecaTV",
- "alt_names": [
- "아프리카TV",
- "Afreeca.TV"
- ],
- "servers": [
- {
- "name": "Asia : Korea",
- "url": "rtmp://rtmpmanager-freecat.afreeca.tv/app"
- },
- {
- "name": "North America : US East",
- "url": "rtmp://rtmp-esu.afreecatv.com/app"
- },
- {
- "name": "North America : US West",
- "url": "rtmp://rtmp-wsu.afreecatv.com/app"
- },
- {
- "name": "South America : Brazil",
- "url": "rtmp://rtmp-brz.afreecatv.com/app"
- },
- {
- "name": "Europe : UK",
- "url": "rtmp://rtmp-uk.afreecatv.com/app"
- },
- {
- "name": "Asia : Singapore",
- "url": "rtmp://rtmp-sgp.afreecatv.com/app"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "main",
- "max video bitrate": 8000,
- "max audio bitrate": 192
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "CAM4",
- "servers": [
- {
- "name": "CAM4",
- "url": "rtmp://origin.cam4.com/cam4-origin-live"
- }
- ],
- "recommended": {
- "keyint": 1,
- "profile": "baseline",
- "max video bitrate": 3000,
- "max audio bitrate": 128
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "ePlay",
- "servers": [
- {
- "name": "ePlay Primary",
- "url": "rtmp://live.eplay.link/origin"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "main",
- "max video bitrate": 7500,
- "max audio bitrate": 192
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Picarto",
- "servers": [
- {
- "name": "Autoselect closest server",
- "url": "rtmp://live.us.picarto.tv/golive"
- },
- {
- "name": "Los Angeles, USA",
- "url": "rtmp://live.us-losangeles.picarto.tv/golive"
- },
- {
- "name": "Dallas, USA",
- "url": "rtmp://live.us-dallas.picarto.tv/golive"
- },
- {
- "name": "Miami, USA",
- "url": "rtmp://live.us-miami.picarto.tv/golive"
- },
- {
- "name": "New York, USA",
- "url": "rtmp://live.us-newyork.picarto.tv/golive"
- },
- {
- "name": "Europe",
- "url": "rtmp://live.eu-west1.picarto.tv/golive"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "main",
- "max video bitrate": 3500
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Livestream",
- "servers": [
- {
- "name": "Primary",
- "url": "rtmp://rtmpin.livestreamingest.com/rtmpin"
- }
- ],
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Uscreen",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://global-live.uscreen.app:5222/app"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 8000,
- "max audio bitrate": 192
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Stripchat",
- "servers": [
- {
- "name": "Auto",
- "url": "rtmp://live.doppiocdn.com/ext"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "main",
- "bframes": 0,
- "max video bitrate": 6000,
- "max audio bitrate": 128,
- "x264opts": "tune=zerolatency"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "CamSoda",
- "servers": [
- {
- "name": "North America",
- "url": "rtmp://obs-ingest-na.livemediahost.com/cam_obs"
- },
- {
- "name": "South America",
- "url": "rtmp://obs-ingest-sa.livemediahost.com/cam_obs"
- },
- {
- "name": "Asia",
- "url": "rtmp://obs-ingest-as.livemediahost.com/cam_obs"
- },
- {
- "name": "Europe",
- "url": "rtmp://obs-ingest-eu.livemediahost.com/cam_obs"
- },
- {
- "name": "Oceania",
- "url": "rtmp://obs-ingest-oc.livemediahost.com/cam_obs"
- }
- ],
- "recommended": {
- "supported resolutions": [
- "1920x1080",
- "1280x720",
- "852x480",
- "480x360"
- ],
- "max fps": 30,
- "max video bitrate": 6000,
- "max audio bitrate": 160,
- "x264opts": "tune=zerolatency"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Chaturbate",
- "stream_key_link": "https://chaturbate.com/b/?useExternalSoftware=true",
- "more_info_link": "https://support.chaturbate.com/hc/en-us/articles/360037971952-How-do-I-set-up-OBS",
- "servers": [
- {
- "name": "Global Main Fastest - Recommended",
- "url": "rtmp://global.live.mmcdn.com/live-origin"
- },
- {
- "name": "Global Backup",
- "url": "rtmp://global-backup.live.mmcdn.com/live-origin"
- },
- {
- "name": "Asia: Mumbai, India",
- "url": "rtmp://bom.live.mmcdn.com/live-origin"
- },
- {
- "name": "Asia: Singapore",
- "url": "rtmp://sin.live.mmcdn.com/live-origin"
- },
- {
- "name": "Asia: Taiwan",
- "url": "rtmp://tsa.live.mmcdn.com/live-origin"
- },
- {
- "name": "Asia: Tokyo, Japan",
- "url": "rtmp://nrt.live.mmcdn.com/live-origin"
- },
- {
- "name": "Australasia: Sydney, Australia",
- "url": "rtmp://syd.live.mmcdn.com/live-origin"
- },
- {
- "name": "EU East: Sofia, Bulgaria",
- "url": "rtmp://sof.live.mmcdn.com/live-origin"
- },
- {
- "name": "EU East: Warsaw, Poland",
- "url": "rtmp://waw.live.mmcdn.com/live-origin"
- },
- {
- "name": "EU North: Helsinki, Finland",
- "url": "rtmp://hel.live.mmcdn.com/live-origin"
- },
- {
- "name": "EU West: Amsterdam, Netherlands",
- "url": "rtmp://ams.live.mmcdn.com/live-origin"
- },
- {
- "name": "EU West: Frankfurt, Germany",
- "url": "rtmp://fra.live.mmcdn.com/live-origin"
- },
- {
- "name": "EU West: Madrid, Spain",
- "url": "rtmp://mad.live.mmcdn.com/live-origin"
- },
- {
- "name": "EU West: Milan, Italy",
- "url": "rtmp://mxp.live.mmcdn.com/live-origin"
- },
- {
- "name": "EU West: Rotterdam, Netherlands",
- "url": "rtmp://rtm.live.mmcdn.com/live-origin"
- },
- {
- "name": "South America: Bogota, Colombia",
- "url": "rtmp://bog.live.mmcdn.com/live-origin"
- },
- {
- "name": "South America: Sao Paulo, Brazil",
- "url": "rtmp://gru.live.mmcdn.com/live-origin"
- },
- {
- "name": "US Central: Austin, TX",
- "url": "rtmp://aus.live.mmcdn.com/live-origin"
- },
- {
- "name": "US Central: Chicago, IL",
- "url": "rtmp://chi.live.mmcdn.com/live-origin"
- },
- {
- "name": "US East: Ashburn, VA",
- "url": "rtmp://ash.live.mmcdn.com/live-origin"
- },
- {
- "name": "US East: Atlanta, GA",
- "url": "rtmp://atl.live.mmcdn.com/live-origin"
- },
- {
- "name": "US East: Miami, FL",
- "url": "rtmp://mia.live.mmcdn.com/live-origin"
- },
- {
- "name": "US West: Los Angeles, CA",
- "url": "rtmp://lax.live.mmcdn.com/live-origin"
- },
- {
- "name": "US West: Phoenix, AZ",
- "url": "rtmp://phx.live.mmcdn.com/live-origin"
- },
- {
- "name": "US West: Salt Lake City, UT",
- "url": "rtmp://slc.live.mmcdn.com/live-origin"
- },
- {
- "name": "US West: Seattle, WA",
- "url": "rtmp://sea.live.mmcdn.com/live-origin"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 50000,
- "max audio bitrate": 192,
- "supported resolutions": [
- "3840x2160",
- "2560x1440",
- "1920x1080",
- "1280x720",
- "960x540",
- "852x480",
- "640x360"
- ],
- "max fps": 60
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "WpStream",
- "more_info_link": "https://wpstream.net/obs-more-info",
- "stream_key_link": "https://wpstream.net/obs-get-stream-key",
- "servers": [
- {
- "name": "Closest server - Automatic",
- "url": "rtmp://ingest.wpstream.net/golive"
- },
- {
- "name": "North America",
- "url": "rtmp://ingest-na.wpstream.net/golive"
- },
- {
- "name": "Europe",
- "url": "rtmp://ingest-eu.wpstream.net/golive"
- },
- {
- "name": "Asia",
- "url": "rtmp://ingest-as.wpstream.net/golive"
- },
- {
- "name": "South America",
- "url": "rtmp://ingest-sa.wpstream.net/golive"
- },
- {
- "name": "Australia & Oceania",
- "url": "rtmp://ingest-au.wpstream.net/golive"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max audio bitrate": 160
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Twitter",
- "common": true,
- "stream_key_link": "https://studio.twitter.com/producer/sources",
- "alt_names": [
- "Twitter / Periscope"
- ],
- "servers": [
- {
- "name": "US West: California",
- "url": "rtmp://ca.pscp.tv:80/x"
- },
- {
- "name": "US West: Oregon",
- "url": "rtmp://or.pscp.tv:80/x"
- },
- {
- "name": "US East: Virginia",
- "url": "rtmp://va.pscp.tv:80/x"
- },
- {
- "name": "South America: Brazil",
- "url": "rtmp://br.pscp.tv:80/x"
- },
- {
- "name": "EU West: France",
- "url": "rtmp://fr.pscp.tv:80/x"
- },
- {
- "name": "EU West: Ireland",
- "url": "rtmp://ie.pscp.tv:80/x"
- },
- {
- "name": "EU Central: Germany",
- "url": "rtmp://de.pscp.tv:80/x"
- },
- {
- "name": "Asia/Pacific: Australia",
- "url": "rtmp://au.pscp.tv:80/x"
- },
- {
- "name": "Asia/Pacific: India",
- "url": "rtmp://in.pscp.tv:80/x"
- },
- {
- "name": "Asia/Pacific: Japan",
- "url": "rtmp://jp.pscp.tv:80/x"
- },
- {
- "name": "Asia/Pacific: Korea",
- "url": "rtmp://kr.pscp.tv:80/x"
- },
- {
- "name": "Asia/Pacific: Singapore",
- "url": "rtmp://sg.pscp.tv:80/x"
- }
- ],
- "recommended": {
- "keyint": 3,
- "max video bitrate": 12000,
- "max audio bitrate": 128,
- "max fps": 60
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Switchboard Live",
- "alt_names": [
- "Switchboard Live (Joicaster)"
- ],
- "servers": [
- {
- "name": "Default",
- "url": "rtmps://live.sb.zone:443/live"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "high"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Eventials",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://transmission.eventials.com/eventialsLiveOrigin"
- }
- ],
- "recommended": {
- "keyint": 1,
- "profile": "baseline",
- "max video bitrate": 900,
- "max audio bitrate": 96
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "EventLive.pro",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://go.eventlive.pro/live"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 3000,
- "max audio bitrate": 192,
- "supported resolutions": [
- "1920x1080",
- "1280x720"
- ],
- "max fps": 30
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Lahzenegar - StreamG | لحظهنگار - استریمجی",
- "servers": [
- {
- "name": "Primary",
- "url": "rtmp://rtmp.lahzecdn.com/pro"
- },
- {
- "name": "Iran",
- "url": "rtmp://rtmp-iran.lahzecdn.com/pro"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "main",
- "max video bitrate": 4000,
- "max audio bitrate": 192
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "MyLive",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://stream.mylive.in.th/live"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "main",
- "max video bitrate": 7000,
- "max audio bitrate": 192
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Trovo",
- "alt_names": [
- "Madcat"
- ],
- "stream_key_link": "https://studio.trovo.live/mychannel/stream",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://livepush.trovo.live/live/"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 9000,
- "max audio bitrate": 160,
- "x264opts": "scenecut=0"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Mixcloud",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://rtmp.mixcloud.com/broadcast"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 6000,
- "max audio bitrate": 320,
- "supported resolutions": [
- "1280x720",
- "852x480",
- "480x360"
- ],
- "max fps": 30,
- "x264opts": "scenecut=0"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "SermonAudio Cloud",
- "alt_names": [
- "SermonAudio.com"
- ],
- "servers": [
- {
- "name": "Primary",
- "url": "rtmp://webcast.sermonaudio.com/sa"
- }
- ],
- "recommended": {
- "max video bitrate": 2000,
- "max audio bitrate": 128
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Vimeo",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://rtmp.cloud.vimeo.com/live"
- }
- ],
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Aparat",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://rtmp.cdn.asset.aparat.com:443/event"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 6000,
- "max audio bitrate": 320,
- "x264opts": "scenecut=0"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "KakaoTV",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://rtmp.play.kakao.com/kakaotv"
- }
- ],
- "recommended": {
- "max video bitrate": 8000,
- "max audio bitrate": 192
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Piczel.tv",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://piczel.tv:1935/live"
- }
- ],
- "recommended": {
- "keyint": 4,
- "max video bitrate": 2500,
- "max audio bitrate": 256,
- "x264opts": "tune=zerolatency"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "STAGE TEN",
- "servers": [
- {
- "name": "STAGE TEN",
- "url": "rtmps://app-rtmp.stageten.tv:443/stageten"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "baseline",
- "max video bitrate": 4000,
- "max audio bitrate": 128
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "DLive",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://stream.dlive.tv/live"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 6000,
- "max audio bitrate": 160
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Lightcast.com",
- "servers": [
- {
- "name": "North America 1",
- "url": "rtmp://ingest-na1.live.lightcast.com/in"
- },
- {
- "name": "North America 2",
- "url": "rtmp://ingest-na2.live.lightcast.com/in"
- },
- {
- "name": "Europe",
- "url": "rtmp://ingest-eu1.live.lightcast.com/in"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 6000,
- "max audio bitrate": 320,
- "x264opts": "scenecut=0"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Bongacams",
- "servers": [
- {
- "name": "Automatic / Default",
- "url": "rtmp://auto.origin.gnsbc.com:1934/live"
- },
- {
- "name": "Automatic / Backup",
- "url": "rtmp://origin.bcvidorigin.com:1934/live"
- },
- {
- "name": "Europe",
- "url": "rtmp://z-eu.origin.gnsbc.com:1934/live"
- },
- {
- "name": "North America",
- "url": "rtmp://z-us.origin.gnsbc.com:1934/live"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 6000,
- "max audio bitrate": 192,
- "bframes": 0,
- "x264opts": "tune=zerolatency"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "OnlyFans.com",
- "stream_key_link": "https://onlyfans.com/my/settings/other",
- "servers": [
- {
- "name": "CloudBeta",
- "url": "rtmp://cloudbetastreaming.onlyfans.com/live"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "main",
- "max video bitrate": 2500,
- "max audio bitrate": 192,
- "bframes": 0,
- "x264opts": "tune=zerolatency"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Steam",
- "common": false,
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://ingest-rtmp.broadcast.steamcontent.com/app"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "high",
- "max video bitrate": 7000,
- "max audio bitrate": 128
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Konduit.live",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://rtmp.konduit.live/live"
- }
- ],
- "recommended": {
- "keyint": 2,
- "x264opts": "scenecut=0"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "niconico (ニコニコ生放送)",
- "more_info_link": "https://qa.nicovideo.jp/faq/show/701",
- "alt_names": [
- "niconico, premium member (ニコニコ生放送 プレミアム会員)",
- "niconico, free member (ニコニコ生放送 一般会員)"
- ],
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://liveorigin.dlive.nicovideo.jp/live/input"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "high",
- "max audio bitrate": 192,
- "max video bitrate": 5808,
- "x264opts": "tune=zerolatency"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Nimo TV",
- "servers": [
- {
- "name": "Global:2",
- "url": "rtmp://txpush.rtmp.nimo.tv/live/"
- },
- {
- "name": "Global:3",
- "url": "rtmp://alpush.rtmp.nimo.tv/live/"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 6000,
- "max audio bitrate": 160
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "XLoveCam.com",
- "servers": [
- {
- "name": "Europe(main)",
- "url": "rtmp://nl.eu.stream.xlove.com/performer-origin"
- },
- {
- "name": "Europe(Romania)",
- "url": "rtmp://ro.eu.stream.xlove.com/performer-origin"
- },
- {
- "name": "Europe(Russia)",
- "url": "rtmp://ru.eu.stream.xlove.com/performer-origin"
- },
- {
- "name": "North America(US East)",
- "url": "rtmp://usec.na.stream.xlove.com/performer-origin"
- },
- {
- "name": "North America(US West)",
- "url": "rtmp://uswc.na.stream.xlove.com/performer-origin"
- },
- {
- "name": "North America(Canada)",
- "url": "rtmp://ca.na.stream.xlove.com/performer-origin"
- },
- {
- "name": "South America",
- "url": "rtmp://co.sa.stream.xlove.com/performer-origin"
- },
- {
- "name": "Asia",
- "url": "rtmp://sg.as.stream.xlove.com/performer-origin"
- }
- ],
- "recommended": {
- "x264opts": "scenecut=0"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "AngelThump",
- "servers": [
- {
- "name": "Auto",
- "url": "rtmp://ingest.angelthump.com/live"
- },
- {
- "name": "New York 3",
- "url": "rtmp://nyc-ingest.angelthump.com:1935/live"
- },
- {
- "name": "San Francisco 2",
- "url": "rtmp://sfo-ingest.angelthump.com:1935/live"
- },
- {
- "name": "Singapore 1",
- "url": "rtmp://sgp-ingest.angelthump.com:1935/live"
- },
- {
- "name": "London 1",
- "url": "rtmp://lon-ingest.angelthump.com:1935/live"
- },
- {
- "name": "Frankfurt 1",
- "url": "rtmp://fra-ingest.angelthump.com:1935/live"
- },
- {
- "name": "Toronto 1",
- "url": "rtmp://tor-ingest.angelthump.com:1935/live"
- },
- {
- "name": "Amsterdam 3",
- "url": "rtmp://ams-ingest.angelthump.com:1935/live"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "high",
- "max video bitrate": 3500,
- "max audio bitrate": 160
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "api.video",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://broadcast.api.video/s"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 20000,
- "max audio bitrate": 192
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "SHOWROOM",
- "protocol": "RTMP",
- "servers": [
- {
- "name": "Default",
- "url": "https://www.showroom-live.com/api/obs/streaming_info?obs_key="
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "main",
- "max video bitrate": 1500,
- "max audio bitrate": 160,
- "x264opts": "tune=zerolatency"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Mux",
- "servers": [
- {
- "name": "Global (RTMPS)",
- "url": "rtmps://global-live.mux.com:443/app"
- },
- {
- "name": "Global (RTMP)",
- "url": "rtmp://global-live.mux.com:5222/app"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 5000,
- "max audio bitrate": 160
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Viloud",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://live.viloud.tv:5222/app"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 5000,
- "max audio bitrate": 160
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "MyFreeCams",
- "servers": [
- {
- "name": "Automatic",
- "url": "rtmp://publish.myfreecams.com/NxServer"
- },
- {
- "name": "Australia",
- "url": "rtmp://publish-syd.myfreecams.com/NxServer"
- },
- {
- "name": "East Asia",
- "url": "rtmp://publish-tyo.myfreecams.com/NxServer"
- },
- {
- "name": "Europe (East)",
- "url": "rtmp://publish-buh.myfreecams.com/NxServer"
- },
- {
- "name": "Europe (West)",
- "url": "rtmp://publish-ams.myfreecams.com/NxServer"
- },
- {
- "name": "North America (East Coast)",
- "url": "rtmp://publish-ord.myfreecams.com/NxServer"
- },
- {
- "name": "North America (West Coast)",
- "url": "rtmp://publish-tuk.myfreecams.com/NxServer"
- },
- {
- "name": "South America",
- "url": "rtmp://publish-sao.myfreecams.com/NxServer"
- }
- ],
- "recommended": {
- "keyint": 1,
- "profile": "high",
- "max fps": 60,
- "max video bitrate": 10000,
- "max audio bitrate": 192,
- "x264opts": "tune=zerolatency scenecut=0"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "PolyStreamer.com",
- "servers": [
- {
- "name": "Auto-select closest server",
- "url": "rtmp://live.polystreamer.com/live"
- },
- {
- "name": "United States - West",
- "url": "rtmp://us-west.live.polystreamer.com/live"
- },
- {
- "name": "United States - East",
- "url": "rtmp://us-east.live.polystreamer.com/live"
- },
- {
- "name": "Australia",
- "url": "rtmp://aus.live.polystreamer.com/live"
- },
- {
- "name": "India",
- "url": "rtmp://ind.live.polystreamer.com/live"
- },
- {
- "name": "Germany",
- "url": "rtmp://deu.live.polystreamer.com/live"
- },
- {
- "name": "Japan",
- "url": "rtmp://jpn.live.polystreamer.com/live"
- },
- {
- "name": "Singapore",
- "url": "rtmp://sgp.live.polystreamer.com/live"
- }
- ],
- "recommended": {
- "keyint": 2
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "OPENREC.tv - Premium member (プレミアム会員)",
- "stream_key_link": "https://www.openrec.tv/login?keep_login=true&url=https://www.openrec.tv/dashboard/live?from=obs",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://a.station.openrec.tv:1935/live1"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 5000,
- "max audio bitrate": 160
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "nanoStream Cloud / bintu",
- "more_info_link": "https://www.nanocosmos.de/obs",
- "stream_key_link": "https://bintu-cloud-frontend.nanocosmos.de/organisation",
- "servers": [
- {
- "name": "bintu-stream global ingest (rtmp)",
- "url": "rtmp://bintu-stream.nanocosmos.de/live"
- },
- {
- "name": "bintu-stream global ingest (rtmps)",
- "url": "rtmps://bintu-stream.nanocosmos.de:1937/live"
- },
- {
- "name": "bintu-vtrans global ingest with transcoding/ABR (rtmp)",
- "url": "rtmp://bintu-vtrans.nanocosmos.de/live"
- },
- {
- "name": "bintu-vtrans global ingest with transcoding/ABR (rtmps)",
- "url": "rtmps://bintu-vtrans.nanocosmos.de:1937/live"
- },
- {
- "name": "bintu-stream Europe (EU)",
- "url": "rtmp://bintu-stream-eu.nanocosmos.de/live"
- },
- {
- "name": "bintu-stream USA West (USW)",
- "url": "rtmp://bintu-stream-usw.nanocosmos.de/live"
- },
- {
- "name": "bintu-stream US East (USE)",
- "url": "rtmp://bintu-stream-use.nanocosmos.de/live"
- },
- {
- "name": "bintu-stream Asia South (ASS)",
- "url": "rtmp://bintu-stream-ass.nanocosmos.de/live"
- },
- {
- "name": "bintu-stream Australia (AU)",
- "url": "rtmp://bintu-stream-au.nanocosmos.de/live"
- },
- {
- "name": "bintu-vtrans Europe (EU)",
- "url": "rtmp://bintu-vtrans-eu.nanocosmos.de/live"
- },
- {
- "name": "bintu-vtrans USA West (USW)",
- "url": "rtmp://bintu-vtrans-usw.nanocosmos.de/live"
- },
- {
- "name": "bintu-vtrans US East (USE)",
- "url": "rtmp://bintu-vtrans-use.nanocosmos.de/live"
- },
- {
- "name": "bintu-vtrans Asia South (ASS)",
- "url": "rtmp://bintu-vtrans-ass.nanocosmos.de/live"
- },
- {
- "name": "bintu-vtrans Australia (AU)",
- "url": "rtmp://bintu-vtrans-au.nanocosmos.de/live"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "baseline",
- "bframes": 0,
- "max video bitrate": 5000,
- "max audio bitrate": 192,
- "x264opts": "tune=zerolatency b-pyramid=0 scenecut=0"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Dacast",
- "protocol": "RTMP",
- "servers": [
- {
- "name": "Default",
- "url": "https://developer.dacast.com/v3/encoder-setup/"
- }
- ],
- "recommended": {
- "keyint": 1,
- "profile": "high",
- "max video bitrate": 7000,
- "max audio bitrate": 128
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Bilibili Live - RTMP | 哔哩哔哩直播 - RTMP",
- "more_info_link": "https://link.bilibili.com/p/help/index?id=4#/tools-tutorial",
- "stream_key_link": "https://link.bilibili.com/p/center/index#/my-room/start-live",
- "alt_names": [
- "Bilibili Live"
- ],
- "servers": [
- {
- "name": "Global - Primary | 全球 - 主要",
- "url": "rtmp://live-push.bilivideo.com/live-bvc/"
- },
- {
- "name": "Non Chinese Mainland - Primary | 非中国大陆地区 - 主要",
- "url": "rtmp://bdy.live-push.bilivideo.com/live-bvc/"
- },
- {
- "name": "Chinese Mainland - Backup | 中国大陆地区 - 备用",
- "url": "rtmp://txy2.live-push.bilivideo.com/live-bvc/"
- },
- {
- "name": "Non Chinese Mainland - Backup | 非中国大陆地区 - 备用",
- "url": "rtmp://txy.live-push.bilivideo.com/live-bvc/"
- }
- ],
- "supported video codecs": [
- "h264",
- "hevc"
- ]
- },
- {
- "name": "BoxCast",
- "stream_key_link": "https://dashboard.boxcast.com/#/sources",
- "servers": [
- {
- "name": "BoxCast",
- "url": "rtmp://rtmp.boxcast.com/live"
- }
- ],
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Disciple Media",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://rtmp.disciplemedia.com/b-fme"
- }
- ],
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Jio Games",
- "servers": [
- {
- "name": "Primary",
- "url": "rtmp://livepub1.api.engageapps.jio/live"
- },
- {
- "name": "Secondary",
- "url": "rtmp://livepub2.api.engageapps.jio/live"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 32000,
- "max audio bitrate": 256
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Kuaishou Live",
- "stream_key_link": "https://studio.kuaishou.com/live/list",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://open-push.voip.yximgs.com/gifshow/"
- },
- {
- "name": "North America",
- "url": "rtmp://tx.push.yximgs.com/live/"
- }
- ],
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "PhoneLiveStreaming",
- "stream_key_link": "https://app.phonelivestreaming.com/media/rtmp",
- "servers": [
- {
- "name": "PhoneLiveStreaming",
- "url": "rtmp://live.phonelivestreaming.com/live/"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 128,
- "max audio bitrate": 160
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Sympla",
- "servers": [
- {
- "name": "Sympla RTMP",
- "url": "rtmp://rtmp.sympla.com.br:5222/app"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 5000,
- "max audio bitrate": 160
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Livepush",
- "more_info_link": "https://docs.livepush.io/en/articles/5065323-how-to-stream-live-from-obs-to-livepush",
- "servers": [
- {
- "name": "Livepush Global (Default)",
- "url": "rtmp://dc-global.livepush.io/live"
- },
- {
- "name": "Chicago, US",
- "url": "rtmp://us-central-ch.livepush.io/live"
- },
- {
- "name": "New York, US",
- "url": "rtmp://us-east-ny.livepush.io/live"
- },
- {
- "name": "Los Angeles, US",
- "url": "rtmp://us-west-la.livepush.io/live"
- },
- {
- "name": "Miami, US",
- "url": "rtmp://us-south-mia.livepush.io/live"
- },
- {
- "name": "Dallas, US",
- "url": "rtmp://us-central-dal.livepush.io/live"
- },
- {
- "name": "Montreal, CA",
- "url": "rtmp://ca-central-mon.livepush.io/live"
- },
- {
- "name": "Toronto, CA",
- "url": "rtmp://ca-south-tor.livepush.io/live"
- },
- {
- "name": "Sydney, AU",
- "url": "rtmp://au-east-syd.livepush.io/live"
- },
- {
- "name": "London, UK",
- "url": "rtmp://uk-central-ldn.livepush.io/live"
- },
- {
- "name": "Milan, Italy",
- "url": "rtmp://it-north-mln.livepush.io/live"
- },
- {
- "name": "Paris, FR",
- "url": "rtmp://fr-central-par.livepush.io/live"
- },
- {
- "name": "Singapore",
- "url": "rtmp://as-southeast-sg.livepush.io/live"
- },
- {
- "name": "Bangalore, IN",
- "url": "rtmp://in-south-blr.livepush.io/live"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 16000
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Vindral",
- "more_info_link": "https://docs.vindral.com/docs/vindral-cdn/",
- "stream_key_link": "https://portal.cdn.vindral.com/channels",
- "servers": [
- {
- "name": "Global",
- "url": "rtmps://rtmp.global.cdn.vindral.com/publish"
- }
- ],
- "recommended": {
- "keyint": 1,
- "profile": "high",
- "bframes": 0,
- "max video bitrate": 20000,
- "max audio bitrate": 192
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Whowatch (ふわっち)",
- "more_info_link": "https://whowatch.tv/help/encoder",
- "stream_key_link": "https://whowatch.tv/publish",
- "servers": [
- {
- "name": "default",
- "url": "rtmp://live.whowatch.tv/live/"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 1800,
- "max audio bitrate": 192
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "IRLToolkit",
- "stream_key_link": "https://irl.run/settings/ingest/",
- "servers": [
- {
- "name": "Global (Recommended)",
- "url": "rtmps://stream.global.irl.run/ingest"
- },
- {
- "name": "Los Angeles, US",
- "url": "rtmps://stream.lax.irl.run/ingest"
- },
- {
- "name": "Dallas, US",
- "url": "rtmps://stream.dal.irl.run/ingest"
- },
- {
- "name": "New York, US",
- "url": "rtmps://stream.ewr.irl.run/ingest"
- },
- {
- "name": "Miami, US",
- "url": "rtmps://stream.mia.irl.run/ingest"
- },
- {
- "name": "Amsterdam, NL",
- "url": "rtmps://stream.ams.irl.run/ingest"
- },
- {
- "name": "Frankfurt, DE",
- "url": "rtmps://stream.fra.irl.run/ingest"
- },
- {
- "name": "Singapore",
- "url": "rtmps://stream.sin.irl.run/ingest"
- },
- {
- "name": "Tokyo, JP",
- "url": "rtmps://stream.tyo.irl.run/ingest"
- },
- {
- "name": "Sydney, AU",
- "url": "rtmps://stream.syd.irl.run/ingest"
- }
- ],
- "recommended": {
- "keyint": 2,
- "bframes": 2,
- "max video bitrate": 20000,
- "max audio bitrate": 256
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Bitmovin",
- "more_info_link": "https://developer.bitmovin.com/docs/overview",
- "stream_key_link": "https://bitmovin.com/dashboard/streams?streamsTab=LIVE",
- "servers": [
- {
- "name": "Streams Live",
- "url": "rtmp://live-input.bitmovin.com/streams"
- }
- ],
- "recommended": {
- "keyint": 2
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Enchant.events",
- "more_info_link": "https://docs.enchant.events/knowledge-base-y4pOb",
- "servers": [
- {
- "name": "Primary RTMPS",
- "url": "rtmps://stream.enchant.cloud:443/live"
- }
- ],
- "recommended": {
- "keyint": 2,
- "profile": "high",
- "max video bitrate": 9000,
- "max audio bitrate": 192
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Joystick.TV",
- "more_info_link": "https://support.joystick.tv/live_streaming/",
- "stream_key_link": "https://joystick.tv/stream-settings",
- "servers": [
- {
- "name": "North America",
- "url": "rtmp://live.joystick.tv/live/"
- },
- {
- "name": "Europe",
- "url": "rtmp://eu.live.joystick.tv/live/"
- }
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 7500,
- "max audio bitrate": 192,
- "max fps": 60,
- "profile": "main",
- "bframes": 0,
- "x264opts": "tune=zerolatency scenecut=0"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Livepeer Studio",
- "more_info_link": "https://docs.livepeer.org/guides/developing/stream-via-obs",
- "stream_key_link": "https://livepeer.studio/dashboard/streams",
- "servers": [
- {
- "name": "Global (RTMP)",
- "url": "rtmp://rtmp.livepeer.com/live"
- },
- {
- "name": "Global (RTMP Primary)",
- "url": "rtmp://rtmp-a.livepeer.com/live"
- },
- {
- "name": "Global (RTMP Backup)",
- "url": "rtmp://rtmp-b.livepeer.com/live"
- }
- ],
- "recommended": {
- "keyint": 1,
- "profile": "high",
- "bframes": 0,
- "max video bitrate": 20000,
- "max audio bitrate": 512
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "MasterStream.iR | مستراستریم | ری استریم و استریم همزمان",
- "common": false,
- "more_info_link": "https://masterstream.ir/webpage/page/docs",
- "stream_key_link": "https://masterstream.ir/control-panel/streaming",
- "servers": [
- {
- "name": "Iran Server 1 - Bandwidth Required",
- "url": "rtmp://live1.masterstream.ir/live"
- },
- {
- "name": "Iran Server 2 - Bandwidth Required",
- "url": "rtmp://live2.masterstream.ir/live"
- },
- {
- "name": "Iran Server 3 - Bandwidth Required",
- "url": "rtmp://live3.masterstream.ir/live"
- },
- {
- "name": "Iran Server 4 - Bandwidth Required",
- "url": "rtmp://live4.masterstream.ir/live"
- },
- {
- "name": "Iran Server 5 - Bandwidth Required",
- "url": "rtmp://live5.masterstream.ir/live"
- },
- {
- "name": "International Server 1",
- "url": "rtmp://ilive1.masterstream.ir/live"
- },
- {
- "name": "International Server 2",
- "url": "rtmp://ilive2.masterstream.ir/live"
- },
- {
- "name": "International Server 3",
- "url": "rtmp://ilive3.masterstream.ir/live"
- },
- {
- "name": "International Server 4",
- "url": "rtmp://ilive4.masterstream.ir/live"
- }
- ],
- "protocol": "RTMP",
- "supported video codecs": [
- "h264"
- ],
- "recommended": {
- "keyint": 2,
- "supported resolutions": [
- "1920x1080",
- "1280x720",
- "852x480",
- "640x360"
- ],
- "max video bitrate": 6000,
- "max audio bitrate": 320,
- "x264opts": "scenecut=0"
- }
- },
- {
- "name": "PandaTV | 팬더티비",
- "common": false,
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://rtmp.pandalive.co.kr/app"
- }
- ],
- "recommended": {
- "keyint": 2,
- "supported resolutions": [
- "1920x1080",
- "1280x720",
- "852x480",
- "640x360"
- ],
- "max video bitrate": 7500,
- "max audio bitrate": 320,
- "x264opts": "scenecut=0"
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "Vault - by CommanderRoot",
- "common": false,
- "more_info_link": "https://vault.root-space.eu/",
- "stream_key_link": "https://vault.root-space.eu/recordings",
- "servers": [
- {
- "name": "EU - Central",
- "url": "rtmp://ingest-eu-central.vault.root-space.eu/app"
- },
- {
- "name": "US - West",
- "url": "rtmp://ingest-us-west.vault.root-space.eu/app"
- }
- ],
- "protocol": "RTMP",
- "supported video codecs": [
- "h264"
- ],
- "supported audio codecs": [
- "aac"
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 7800,
- "max audio bitrate": 320,
- "x264opts": "scenecut=0"
- }
- },
- {
- "name": "CHZZK",
- "common": false,
- "stream_key_link": "https://studio.chzzk.naver.com/setting",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://global-rtmp.lip2.navercorp.com:8080/relay"
- }
- ],
- "supported video codecs": [
- "h264"
- ],
- "recommended": {
- "keyint": 1,
- "bframes": 0,
- "max fps": 60,
- "max video bitrate": 8000,
- "max audio bitrate": 192,
- "x264opts": "tune=zerolatency scenecut=0",
- "supported resolutions": [
- "1920x1080"
- ]
- }
- },
- {
- "name": "Streamway",
- "common": false,
- "more_info_link": "https://support.streamway.in/how-to-connect-obs-studio-to-streamway/",
- "stream_key_link": "https://app.streamway.in/broadcasts",
- "servers": [
- {
- "name": "Primary",
- "url": "rtmp://injest.streamway.in/LiveApp"
- },
- {
- "name": "Backup",
- "url": "rtmps://bkp.streamway.in:443/live"
- }
- ],
- "protocol": "RTMP",
- "supported video codecs": [
- "h264"
- ],
- "recommended": {
- "keyint": 2
- }
- },
- {
- "name": "SharePlay.tv",
- "common": false,
- "stream_key_link": "https://playstudio.shareplay.tv/stream/settings",
- "servers": [
- {
- "name": "Atlanta, Georgia, USA",
- "url": "rtmp://live-us-atl-stream.shareplay.tv"
- }
- ],
- "supported video codecs": [
- "h264"
- ],
- "recommended": {
- "keyint": 2,
- "max video bitrate": 12000,
- "max audio bitrate": 320
- }
- },
- {
- "name": "sheeta",
- "common": false,
- "more_info_link": "https://partner-support.sheeta.com/hc/ja/articles/4404573942425-%E7%94%9F%E6%94%BE%E9%80%81%E3%81%AE%E9%85%8D%E4%BF%A1%E6%96%B9%E6%B3%95",
- "servers": [
- {
- "name": "Default",
- "url": "rtmp://lsm.sheeta.com:1935/lsm"
- }
- ],
- "protocol": "RTMP",
- "supported video codecs": [
- "h264"
- ],
- "supported audio codecs": [
- "aac"
- ],
- "recommended": {
- "keyint": 1,
- "profile": "main",
- "supported resolutions": [
- "1920x1080",
- "1280x720",
- "854x480",
- "640x480"
- ],
- "bitrate matrix": [
- {
- "res": "1920x1080",
- "fps": 30,
- "max bitrate": 6000
- },
- {
- "res": "1280x720",
- "fps": 30,
- "max bitrate": 4700
- },
- {
- "res": "854x480",
- "fps": 30,
- "max bitrate": 3400
- },
- {
- "res": "640x480",
- "fps": 30,
- "max bitrate": 3400
- },
- {
- "res": "1920x1080",
- "fps": 60,
- "max bitrate": 9000
- },
- {
- "res": "1280x720",
- "fps": 60,
- "max bitrate": 7000
- },
- {
- "res": "854x480",
- "fps": 60,
- "max bitrate": 5000
- },
- {
- "res": "640x480",
- "fps": 60,
- "max bitrate": 5000
- }
- ],
- "max fps": 60,
- "max video bitrate": 9000,
- "max audio bitrate": 512,
- "x264opts": "scenecut=0",
- "output": "rtmp_output"
- }
- },
- {
- "name": "Amazon IVS",
- "supported video codecs": [
- "h264"
- ],
- "servers": [
- {
- "name": "Asia: China, Hong Kong (6) (RTMPS)",
- "url": "rtmps://hkg06.contribute.live-video.net/app"
- },
- {
- "name": "Asia: India, Bangalore (1) (RTMPS)",
- "url": "rtmps://blr01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: India, Chennai (RTMPS)",
- "url": "rtmps://maa01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: India, Hyderabad (1) (RTMPS)",
- "url": "rtmps://hyd01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: India, Mumbai (RTMPS)",
- "url": "rtmps://bom01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: India, New Delhi (RTMPS)",
- "url": "rtmps://del01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Indonesia, Cikarang Barat (1) (RTMPS)",
- "url": "rtmps://jkt01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Indonesia, Jakarta (2) (RTMPS)",
- "url": "rtmps://jkt02.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Japan, Osaka (1) (RTMPS)",
- "url": "rtmps://osa01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Japan, Tokyo (3) (RTMPS)",
- "url": "rtmps://tyo03.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Japan, Tokyo (5) (RTMPS)",
- "url": "rtmps://tyo05.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Manila, Philippines (1) (RTMPS)",
- "url": "rtmps://mnl01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Singapore (1) (RTMPS)",
- "url": "rtmps://sin01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Singapore (4) (RTMPS)",
- "url": "rtmps://sin04.contribute.live-video.net/app"
- },
- {
- "name": "Asia: South Korea, Seoul (3) (RTMPS)",
- "url": "rtmps://sel03.contribute.live-video.net/app"
- },
- {
- "name": "Asia: South Korea, Seoul (4) (RTMPS)",
- "url": "rtmps://sel04.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Taiwan, Taipei (1) (RTMPS)",
- "url": "rtmps://tpe01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Taiwan, Taipei (3) (RTMPS)",
- "url": "rtmps://tpe03.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Thailand, Bangkok (2) (RTMPS)",
- "url": "rtmps://bkk02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Austria, Vienna (2) (RTMPS)",
- "url": "rtmps://vie02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Czech Republic, Prague (RTMPS)",
- "url": "rtmps://prg03.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Denmark, Copenhagen (RTMPS)",
- "url": "rtmps://cph.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Finland, Helsinki (3) (RTMPS)",
- "url": "rtmps://hel03.contribute.live-video.net/app"
- },
- {
- "name": "Europe: France, Marseille (RTMPS)",
- "url": "rtmps://mrs.contribute.live-video.net/app"
- },
- {
- "name": "Europe: France, Marseille (2) (RTMPS)",
- "url": "rtmps://mrs02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: France, Paris (10) (RTMPS)",
- "url": "rtmps://cdg10.contribute.live-video.net/app"
- },
- {
- "name": "Europe: France, Paris (2) (RTMPS)",
- "url": "rtmps://cdg02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Germany, Berlin (RTMPS)",
- "url": "rtmps://ber.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Germany, Dusseldorf (1) (RTMPS)",
- "url": "rtmps://dus01.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Germany, Frankfurt (2) (RTMPS)",
- "url": "rtmps://fra02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Germany, Frankfurt (5) (RTMPS)",
- "url": "rtmps://fra05.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Germany, Frankfurt (6) (RTMPS)",
- "url": "rtmps://fra06.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Germany, Munich (1) (RTMPS)",
- "url": "rtmps://muc01.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Italy, Milan (2) (RTMPS)",
- "url": "rtmps://mil02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Netherlands, Amsterdam (2) (RTMPS)",
- "url": "rtmps://ams02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Netherlands, Amsterdam (3) (RTMPS)",
- "url": "rtmps://ams03.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Norway, Oslo (RTMPS)",
- "url": "rtmps://osl.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Poland, Warsaw (2) (RTMPS)",
- "url": "rtmps://waw02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Spain, Madrid (1) (RTMPS)",
- "url": "rtmps://mad01.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Spain, Madrid (2) (RTMPS)",
- "url": "rtmps://mad02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Sweden, Stockholm (3) (RTMPS)",
- "url": "rtmps://arn03.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Sweden, Stockholm (4) (RTMPS)",
- "url": "rtmps://arn04.contribute.live-video.net/app"
- },
- {
- "name": "Europe: UK, London (3) (RTMPS)",
- "url": "rtmps://lhr03.contribute.live-video.net/app"
- },
- {
- "name": "Europe: UK, London (4) (RTMPS)",
- "url": "rtmps://lhr04.contribute.live-video.net/app"
- },
- {
- "name": "Europe: UK, London (8) (RTMPS)",
- "url": "rtmps://lhr08.contribute.live-video.net/app"
- },
- {
- "name": "NA: Canada, Quebec (RTMPS)",
- "url": "rtmps://ymq03.contribute.live-video.net/app"
- },
- {
- "name": "NA: Canada, Toronto (RTMPS)",
- "url": "rtmps://yto.contribute.live-video.net/app"
- },
- {
- "name": "NA: Mexico, Queretaro (3) (RTMPS)",
- "url": "rtmps://qro03.contribute.live-video.net/app"
- },
- {
- "name": "NA: Mexico, Queretaro (4) (RTMPS)",
- "url": "rtmps://qro04.contribute.live-video.net/app"
- },
- {
- "name": "Oceania: Australia, Sydney (2) (RTMPS)",
- "url": "rtmps://syd02.contribute.live-video.net/app"
- },
- {
- "name": "Oceania: Australia, Sydney (3) (RTMPS)",
- "url": "rtmps://syd03.contribute.live-video.net/app"
- },
- {
- "name": "South America: Brazil, Fortaleza (1) (RTMPS)",
- "url": "rtmps://for01.contribute.live-video.net/app"
- },
- {
- "name": "South America: Brazil, Rio de Janeiro (3) (RTMPS)",
- "url": "rtmps://rio03.contribute.live-video.net/app"
- },
- {
- "name": "South America: Brazil, Rio de Janeiro (4) (RTMPS)",
- "url": "rtmps://rio04.contribute.live-video.net/app"
- },
- {
- "name": "South America: Brazil, Sao Paulo (RTMPS)",
- "url": "rtmps://sao03.contribute.live-video.net/app"
- },
- {
- "name": "South America: Brazil, Sao Paulo (5) (RTMPS)",
- "url": "rtmps://sao05.contribute.live-video.net/app"
- },
- {
- "name": "South America: Buenos Aires, Argentina (1) (RTMPS)",
- "url": "rtmps://bue01.contribute.live-video.net/app"
- },
- {
- "name": "South America: Colombia, Bogota (1) (RTMPS)",
- "url": "rtmps://bog01.contribute.live-video.net/app"
- },
- {
- "name": "US Central: Dallas, TX (RTMPS)",
- "url": "rtmps://dfw.contribute.live-video.net/app"
- },
- {
- "name": "US Central: Dallas, TX (2) (RTMPS)",
- "url": "rtmps://dfw02.contribute.live-video.net/app"
- },
- {
- "name": "US Central: Denver, CO (52) (RTMPS)",
- "url": "rtmps://den52.contribute.live-video.net/app"
- },
- {
- "name": "US Central: Garland, TX (56) (RTMPS)",
- "url": "rtmps://dfw56.contribute.live-video.net/app"
- },
- {
- "name": "US Central: Houston, TX (50) (RTMPS)",
- "url": "rtmps://iah50.contribute.live-video.net/app"
- },
- {
- "name": "US East: Ashburn, VA (5) (RTMPS)",
- "url": "rtmps://iad05.contribute.live-video.net/app"
- },
- {
- "name": "US East: Atlanta, GA (RTMPS)",
- "url": "rtmps://atl.contribute.live-video.net/app"
- },
- {
- "name": "US East: Chicago, IL (3) (RTMPS)",
- "url": "rtmps://ord03.contribute.live-video.net/app"
- },
- {
- "name": "US East: Chicago, IL (56) (RTMPS)",
- "url": "rtmps://ord56.contribute.live-video.net/app"
- },
- {
- "name": "US East: McAllen, TX (1) (RTMPS)",
- "url": "rtmps://mfe01.contribute.live-video.net/app"
- },
- {
- "name": "US East: Miami, FL (5) (RTMPS)",
- "url": "rtmps://mia05.contribute.live-video.net/app"
- },
- {
- "name": "US East: New York, NY (RTMPS)",
- "url": "rtmps://jfk.contribute.live-video.net/app"
- },
- {
- "name": "US East: New York, NY (50) (RTMPS)",
- "url": "rtmps://jfk50.contribute.live-video.net/app"
- },
- {
- "name": "US West: Los Angeles, CA (RTMPS)",
- "url": "rtmps://lax.contribute.live-video.net/app"
- },
- {
- "name": "US West: Salt Lake City, UT (RTMPS)",
- "url": "rtmps://slc.contribute.live-video.net/app"
- },
- {
- "name": "US West: San Francisco, CA (RTMPS)",
- "url": "rtmps://sfo.contribute.live-video.net/app"
- },
- {
- "name": "US West: San Jose, California (6) (RTMPS)",
- "url": "rtmps://sjc06.contribute.live-video.net/app"
- },
- {
- "name": "US West: Seattle, WA (RTMPS)",
- "url": "rtmps://sea.contribute.live-video.net/app"
- },
- {
- "name": "US West: Seattle, WA (2) (RTMPS)",
- "url": "rtmps://sea02.contribute.live-video.net/app"
- },
- {
- "name": "Asia: China, Hong Kong (6) (RTMP)",
- "url": "rtmp://hkg06.contribute.live-video.net/app"
- },
- {
- "name": "Asia: India, Bangalore (1) (RTMP)",
- "url": "rtmp://blr01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: India, Chennai (RTMP)",
- "url": "rtmp://maa01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: India, Hyderabad (1) (RTMP)",
- "url": "rtmp://hyd01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: India, Mumbai (RTMP)",
- "url": "rtmp://bom01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: India, New Delhi (RTMP)",
- "url": "rtmp://del01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Indonesia, Cikarang Barat (1) (RTMP)",
- "url": "rtmp://jkt01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Indonesia, Jakarta (2) (RTMP)",
- "url": "rtmp://jkt02.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Japan, Osaka (1) (RTMP)",
- "url": "rtmp://osa01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Japan, Tokyo (3) (RTMP)",
- "url": "rtmp://tyo03.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Japan, Tokyo (5) (RTMP)",
- "url": "rtmp://tyo05.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Manila, Philippines (1) (RTMP)",
- "url": "rtmp://mnl01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Singapore (1) (RTMP)",
- "url": "rtmp://sin01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Singapore (4) (RTMP)",
- "url": "rtmp://sin04.contribute.live-video.net/app"
- },
- {
- "name": "Asia: South Korea, Seoul (3) (RTMP)",
- "url": "rtmp://sel03.contribute.live-video.net/app"
- },
- {
- "name": "Asia: South Korea, Seoul (4) (RTMP)",
- "url": "rtmp://sel04.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Taiwan, Taipei (1) (RTMP)",
- "url": "rtmp://tpe01.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Taiwan, Taipei (3) (RTMP)",
- "url": "rtmp://tpe03.contribute.live-video.net/app"
- },
- {
- "name": "Asia: Thailand, Bangkok (2) (RTMP)",
- "url": "rtmp://bkk02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Austria, Vienna (2) (RTMP)",
- "url": "rtmp://vie02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Czech Republic, Prague (RTMP)",
- "url": "rtmp://prg03.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Denmark, Copenhagen (RTMP)",
- "url": "rtmp://cph.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Finland, Helsinki (3) (RTMP)",
- "url": "rtmp://hel03.contribute.live-video.net/app"
- },
- {
- "name": "Europe: France, Marseille (RTMP)",
- "url": "rtmp://mrs.contribute.live-video.net/app"
- },
- {
- "name": "Europe: France, Marseille (2) (RTMP)",
- "url": "rtmp://mrs02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: France, Paris (10) (RTMP)",
- "url": "rtmp://cdg10.contribute.live-video.net/app"
- },
- {
- "name": "Europe: France, Paris (2) (RTMP)",
- "url": "rtmp://cdg02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Germany, Berlin (RTMP)",
- "url": "rtmp://ber.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Germany, Dusseldorf (1) (RTMP)",
- "url": "rtmp://dus01.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Germany, Frankfurt (2) (RTMP)",
- "url": "rtmp://fra02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Germany, Frankfurt (5) (RTMP)",
- "url": "rtmp://fra05.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Germany, Frankfurt (6) (RTMP)",
- "url": "rtmp://fra06.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Germany, Munich (1) (RTMP)",
- "url": "rtmp://muc01.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Italy, Milan (2) (RTMP)",
- "url": "rtmp://mil02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Netherlands, Amsterdam (2) (RTMP)",
- "url": "rtmp://ams02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Netherlands, Amsterdam (3) (RTMP)",
- "url": "rtmp://ams03.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Norway, Oslo (RTMP)",
- "url": "rtmp://osl.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Poland, Warsaw (2) (RTMP)",
- "url": "rtmp://waw02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Spain, Madrid (1) (RTMP)",
- "url": "rtmp://mad01.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Spain, Madrid (2) (RTMP)",
- "url": "rtmp://mad02.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Sweden, Stockholm (3) (RTMP)",
- "url": "rtmp://arn03.contribute.live-video.net/app"
- },
- {
- "name": "Europe: Sweden, Stockholm (4) (RTMP)",
- "url": "rtmp://arn04.contribute.live-video.net/app"
- },
- {
- "name": "Europe: UK, London (3) (RTMP)",
- "url": "rtmp://lhr03.contribute.live-video.net/app"
- },
- {
- "name": "Europe: UK, London (4) (RTMP)",
- "url": "rtmp://lhr04.contribute.live-video.net/app"
- },
- {
- "name": "Europe: UK, London (8) (RTMP)",
- "url": "rtmp://lhr08.contribute.live-video.net/app"
- },
- {
- "name": "NA: Canada, Quebec (RTMP)",
- "url": "rtmp://ymq03.contribute.live-video.net/app"
- },
- {
- "name": "NA: Canada, Toronto (RTMP)",
- "url": "rtmp://yto.contribute.live-video.net/app"
- },
- {
- "name": "NA: Mexico, Queretaro (3) (RTMP)",
- "url": "rtmp://qro03.contribute.live-video.net/app"
- },
- {
- "name": "NA: Mexico, Queretaro (4) (RTMP)",
- "url": "rtmp://qro04.contribute.live-video.net/app"
- },
- {
- "name": "Oceania: Australia, Sydney (2) (RTMP)",
- "url": "rtmp://syd02.contribute.live-video.net/app"
- },
- {
- "name": "Oceania: Australia, Sydney (3) (RTMP)",
- "url": "rtmp://syd03.contribute.live-video.net/app"
- },
- {
- "name": "South America: Brazil, Fortaleza (1) (RTMP)",
- "url": "rtmp://for01.contribute.live-video.net/app"
- },
- {
- "name": "South America: Brazil, Rio de Janeiro (3) (RTMP)",
- "url": "rtmp://rio03.contribute.live-video.net/app"
- },
- {
- "name": "South America: Brazil, Rio de Janeiro (4) (RTMP)",
- "url": "rtmp://rio04.contribute.live-video.net/app"
- },
- {
- "name": "South America: Brazil, Sao Paulo (RTMP)",
- "url": "rtmp://sao03.contribute.live-video.net/app"
- },
- {
- "name": "South America: Brazil, Sao Paulo (5) (RTMP)",
- "url": "rtmp://sao05.contribute.live-video.net/app"
- },
- {
- "name": "South America: Buenos Aires, Argentina (1) (RTMP)",
- "url": "rtmp://bue01.contribute.live-video.net/app"
- },
- {
- "name": "South America: Colombia, Bogota (1) (RTMP)",
- "url": "rtmp://bog01.contribute.live-video.net/app"
- },
- {
- "name": "US Central: Dallas, TX (RTMP)",
- "url": "rtmp://dfw.contribute.live-video.net/app"
- },
- {
- "name": "US Central: Dallas, TX (2) (RTMP)",
- "url": "rtmp://dfw02.contribute.live-video.net/app"
- },
- {
- "name": "US Central: Denver, CO (52) (RTMP)",
- "url": "rtmp://den52.contribute.live-video.net/app"
- },
- {
- "name": "US Central: Garland, TX (56) (RTMP)",
- "url": "rtmp://dfw56.contribute.live-video.net/app"
- },
- {
- "name": "US Central: Houston, TX (50) (RTMP)",
- "url": "rtmp://iah50.contribute.live-video.net/app"
- },
- {
- "name": "US East: Ashburn, VA (5) (RTMP)",
- "url": "rtmp://iad05.contribute.live-video.net/app"
- },
- {
- "name": "US East: Atlanta, GA (RTMP)",
- "url": "rtmp://atl.contribute.live-video.net/app"
- },
- {
- "name": "US East: Chicago, IL (3) (RTMP)",
- "url": "rtmp://ord03.contribute.live-video.net/app"
- },
- {
- "name": "US East: Chicago, IL (56) (RTMP)",
- "url": "rtmp://ord56.contribute.live-video.net/app"
- },
- {
- "name": "US East: McAllen, TX (1) (RTMP)",
- "url": "rtmp://mfe01.contribute.live-video.net/app"
- },
- {
- "name": "US East: Miami, FL (5) (RTMP)",
- "url": "rtmp://mia05.contribute.live-video.net/app"
- },
- {
- "name": "US East: New York, NY (RTMP)",
- "url": "rtmp://jfk.contribute.live-video.net/app"
- },
- {
- "name": "US East: New York, NY (50) (RTMP)",
- "url": "rtmp://jfk50.contribute.live-video.net/app"
- },
- {
- "name": "US West: Los Angeles, CA (RTMP)",
- "url": "rtmp://lax.contribute.live-video.net/app"
- },
- {
- "name": "US West: Salt Lake City, UT (RTMP)",
- "url": "rtmp://slc.contribute.live-video.net/app"
- },
- {
- "name": "US West: San Francisco, CA (RTMP)",
- "url": "rtmp://sfo.contribute.live-video.net/app"
- },
- {
- "name": "US West: San Jose, California (6) (RTMP)",
- "url": "rtmp://sjc06.contribute.live-video.net/app"
- },
- {
- "name": "US West: Seattle, WA (RTMP)",
- "url": "rtmp://sea.contribute.live-video.net/app"
- },
- {
- "name": "US West: Seattle, WA (2) (RTMP)",
- "url": "rtmp://sea02.contribute.live-video.net/app"
- }
- ],
- "multitrack_video_configuration_url": "https://ingest.contribute.live-video.net/api/v3/GetClientConfiguration",
- "recommended": {
- "keyint": 2,
- "x264opts": "scenecut=0"
- }
- },
- {
- "name": "Dolby Millicast",
- "common": false,
- "more_info_link": "https://docs.optiview.dolby.com/millicast/using-obs/",
- "stream_key_link": "https://streaming.dolby.io",
- "multitrack_video_configuration_url": "https://director.millicast.com/api/multitrackvideo/configuration",
- "multitrack_video_name": "Enhanced Broadcasting",
- "multitrack_video_learn_more_link": "https://docs.optiview.dolby.com/millicast/obs-enhanced-broadcasting-multitrack-video/",
- "servers": [
- {
- "name": "Global (RTMPS)",
- "url": "rtmps://rtmp-auto.millicast.com:443/v2/pub"
- },
- {
- "name": "Global (RTMP)",
- "url": "rtmp://rtmp-auto.millicast.com:1935/v2/pub"
- },
- {
- "name": "Bangalore, India (RTMPS)",
- "url": "rtmps://rtmp-blr-1.millicast.com:443/v2/pub"
- },
- {
- "name": "Bangalore, India (RTMP)",
- "url": "rtmp://rtmp-blr-1.millicast.com:1935/v2/pub"
- },
- {
- "name": "Frankfurt, Germany (RTMPS)",
- "url": "rtmps://rtmp-fra-1.millicast.com:443/v2/pub"
- },
- {
- "name": "Frankfurt, Germany (RTMP)",
- "url": "rtmp://rtmp-fra-1.millicast.com:1935/v2/pub"
- },
- {
- "name": "Ashburn, Virginia, USA (RTMPS)",
- "url": "rtmps://rtmp-iad-1.millicast.com:443/v2/pub"
- },
- {
- "name": "Ashburn, Virginia, USA (RTMP)",
- "url": "rtmp://rtmp-iad-1.millicast.com:1935/v2/pub"
- },
- {
- "name": "London, England (RTMPS)",
- "url": "rtmps://rtmp-lon-1.millicast.com:443/v2/pub"
- },
- {
- "name": "London, England (RTMP)",
- "url": "rtmp://rtmp-lon-1.millicast.com:1935/v2/pub"
- },
- {
- "name": "Phoenix, AZ, USA (RTMPS)",
- "url": "rtmps://rtmp-phx-1.millicast.com:443/v2/pub"
- },
- {
- "name": "Phoenix, AZ, USA (RTMP)",
- "url": "rtmp://rtmp-phx-1.millicast.com:1935/v2/pub"
- },
- {
- "name": "Sao Paulo, Brazil (RTMPS)",
- "url": "rtmps://rtmp-sao-1.millicast.com:443/v2/pub"
- },
- {
- "name": "Sao Paulo, Brazil (RTMP)",
- "url": "rtmp://rtmp-sao-1.millicast.com:1935/v2/pub"
- },
- {
- "name": "Singapore (RTMPS)",
- "url": "rtmps://rtmp-sgp-1.millicast.com:443/v2/pub"
- },
- {
- "name": "Singapore (RTMP)",
- "url": "rtmp://rtmp-sgp-1.millicast.com:1935/v2/pub"
- },
- {
- "name": "Sydney, Australia (RTMPS)",
- "url": "rtmps://rtmp-syd-1.millicast.com:443/v2/pub"
- },
- {
- "name": "Sydney, Australia (RTMP)",
- "url": "rtmp://rtmp-syd-1.millicast.com:1935/v2/pub"
- }
- ],
- "supported video codecs": [
- "h264",
- "hevc",
- "av1"
- ],
- "recommended": {
- "keyint": 1,
- "bframes": 0
- }
- },
- {
- "name": "NFHS Network",
- "more_info_link": "https://support.nfhsnetwork.com/hc/en-us",
- "stream_key_link": "https://console.nfhsnetwork.com/nfhs-events/",
- "servers": [
- {
- "name": "Manual Broadcasts",
- "url": "rtmp://video.nfhsnetwork.com/manual"
- }
- ],
- "recommended": {
- "supported resolutions": [
- "1920x1080",
- "1280x720",
- "640x360"
- ],
- "max fps": 60
- },
- "supported video codecs": [
- "h264"
- ]
- },
- {
- "name": "VRCDN - Live",
- "more_info_link": "https://vrcdn.live",
- "servers": [
- {
- "name": "Automatic",
- "url": "rtmp://ingest.vrcdn.live/live"
- }
- ],
- "supported video codecs": [
- "h264"
- ],
- "recommended": {
- "keyint": 1,
- "max video bitrate": 6000
- }
- }
- ]
- }
|