obs-studio/plugins/rtmp-services/data/services.json

2416 lines
79 KiB
JSON
Raw Normal View History

{
"$schema": "schema/service-schema-v3.json",
"format_version": 3,
"services": [
{
"name": "Twitch",
"common": true,
"stream_key_link": "https://dashboard.twitch.tv/settings/stream",
"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"
2015-10-12 19:34:35 -07:00
},
{
"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"
},
2016-03-20 12:16:57 -07:00
{
"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"
},
2015-10-17 06:56:58 -07:00
{
"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"
obs-studio UI: Implement stream settings UI - Updated the services API so that it links up with an output and the output gets data from that service rather than via settings. This allows the service context to have control over how an output is used, and makes it so that the URL/key/etc isn't necessarily some static setting. Also, if the service is attached to an output, it will stick around until the output is destroyed. - The settings interface has been updated so that it can allow the usage of service plugins. What this means is that now you can create a service plugin that can control aspects of the stream, and it allows each service to create their own user interface if they create a service plugin module. - Testing out saving of current service information. Saves/loads from JSON in to obs_data_t, seems to be working quite nicely, and the service object information is saved/preserved on exit, and loaded again on startup. - I agonized over the settings user interface for days, and eventually I just decided that the only way that users weren't going to be fumbling over options was to split up the settings in to simple/basic output, pre-configured, and then advanced for advanced use (such as multiple outputs or services, which I'll implement later). This was particularly painful to really design right, I wanted more features and wanted to include everything in one interface but ultimately just realized from experience that users are just not technically knowledgable about it and will end up fumbling with the settings rather than getting things done. Basically, what this means is that casual users only have to enter in about 3 things to configure their stream: Stream key, audio bitrate, and video bitrate. I am really happy with this interface for those types of users, but it definitely won't be sufficient for advanced usage or for custom outputs, so that stuff will have to be separated. - Improved the JSON usage for the 'common streaming services' context, I realized that JSON arrays are there to ensure sorting, while forgetting that general items are optimized for hashing. So basically I'm just using arrays now to sort items in it.
2014-04-24 01:49:07 -07:00
}
},
{
"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",
"supported video codecs": [
"h264",
"hevc"
],
"servers": [
{
"name": "Primary YouTube ingest server",
"url": "https://a.upload.youtube.com/http_upload_hls?cid={stream_key}&copy=0&file=out.m3u8"
},
{
"name": "Backup YouTube ingest server",
"url": "https://b.upload.youtube.com/http_upload_hls?cid={stream_key}&copy=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)"
],
"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
obs-studio UI: Implement stream settings UI - Updated the services API so that it links up with an output and the output gets data from that service rather than via settings. This allows the service context to have control over how an output is used, and makes it so that the URL/key/etc isn't necessarily some static setting. Also, if the service is attached to an output, it will stick around until the output is destroyed. - The settings interface has been updated so that it can allow the usage of service plugins. What this means is that now you can create a service plugin that can control aspects of the stream, and it allows each service to create their own user interface if they create a service plugin module. - Testing out saving of current service information. Saves/loads from JSON in to obs_data_t, seems to be working quite nicely, and the service object information is saved/preserved on exit, and loaded again on startup. - I agonized over the settings user interface for days, and eventually I just decided that the only way that users weren't going to be fumbling over options was to split up the settings in to simple/basic output, pre-configured, and then advanced for advanced use (such as multiple outputs or services, which I'll implement later). This was particularly painful to really design right, I wanted more features and wanted to include everything in one interface but ultimately just realized from experience that users are just not technically knowledgable about it and will end up fumbling with the settings rather than getting things done. Basically, what this means is that casual users only have to enter in about 3 things to configure their stream: Stream key, audio bitrate, and video bitrate. I am really happy with this interface for those types of users, but it definitely won't be sufficient for advanced usage or for custom outputs, so that stuff will have to be separated. - Improved the JSON usage for the 'common streaming services' context, I realized that JSON arrays are there to ensure sorting, while forgetting that general items are optimized for hashing. So basically I'm just using arrays now to sort items in it.
2014-04-24 01:49:07 -07:00
}
},
{
"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"
}
},
2021-07-22 22:32:11 -07:00
{
"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
}
},
2021-04-19 08:32:11 -07:00
{
"name": "Luzento.com - RTMP",
"stream_key_link": "https://cms.luzento.com/dashboard/stream-key?from=OBS",
2021-04-19 08:32:11 -07:00
"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"
}
},
{
"name": "VIMM",
"servers": [
{
"name": "Europe: Frankfurt",
"url": "rtmp://eu.vimm.tv/live"
},
{
"name": "North America: Montreal",
"url": "rtmp://us.vimm.tv/live"
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 8000,
"max audio bitrate": 320,
"x264opts": "scenecut=0"
}
},
{
"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
}
},
{
"name": "GoodGame.ru",
"servers": [
{
"name": "Моscow",
"url": "rtmp://msk.goodgame.ru:1940/live"
}
]
},
{
"name": "YouStreamer",
"stream_key_link": "https://www.app.youstreamer.com/stream/",
"servers": [
{
"name": "Moscow",
"url": "rtmp://push.youstreamer.com/in/"
}
]
},
{
"name": "Vaughn Live / iNSTAGIB",
"servers": [
{
"name": "US: Chicago, IL",
"url": "rtmp://live-ord.vaughnsoft.net/live"
},
{
"name": "US: Vint Hill, VA",
"url": "rtmp://live-iad.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"
2021-01-02 12:29:13 -08:00
},
{
"name": "US: Miami, FL",
"url": "rtmp://live-mia.vaughnsoft.net/live"
},
{
"name": "US: Seattle, WA",
"url": "rtmp://live-sea.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"
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 15000,
"max audio bitrate": 320
}
},
{
"name": "Breakers.TV",
"servers": [
{
"name": "US: Chicago, IL",
"url": "rtmp://live-ord.vaughnsoft.net/live"
},
{
"name": "US: Vint Hill, VA",
"url": "rtmp://live-iad.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"
2021-01-02 12:29:13 -08:00
},
{
"name": "US: Miami, FL",
"url": "rtmp://live-mia.vaughnsoft.net/live"
},
{
"name": "US: Seattle, WA",
"url": "rtmp://live-sea.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"
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 15000,
"max audio bitrate": 320
}
},
{
"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
}
2016-05-15 12:23:09 -07:00
},
{
"name": "Restream.io",
"alt_names": [
"Restream.io - RTMP",
"Restream.io - FTL"
],
2016-05-15 12:23:09 -07:00
"common": true,
"stream_key_link": "https://restream.io/settings/streaming-setup?from=OBS",
2016-05-15 12:23:09 -07:00
"servers": [
{
"name": "Autodetect",
"url": "rtmp://live.restream.io/live"
},
2016-05-15 12:23:09 -07:00
{
"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 (Luxembourg)",
"url": "rtmp://luxembourg.restream.io/live"
},
{
"name": "EU-West (Paris, FR)",
"url": "rtmp://paris.restream.io/live"
},
{
"name": "EU-West (Milan, IT)",
"url": "rtmp://milan.restream.io/live"
},
2016-05-15 12:23:09 -07:00
{
"name": "EU-Central (Frankfurt, DE)",
"url": "rtmp://frankfurt.restream.io/live"
2016-05-15 12:23:09 -07:00
},
{
"name": "EU-East (Falkenstein, DE)",
"url": "rtmp://falkenstein.restream.io/live"
2016-05-15 12:23:09 -07:00
},
{
"name": "EU-East (Prague, Czech)",
"url": "rtmp://prague.restream.io/live"
},
{
"name": "EU-South (Madrid, Spain)",
"url": "rtmp://madrid.restream.io/live"
},
2016-05-15 12:23:09 -07:00
{
"name": "Russia (Moscow)",
"url": "rtmp://moscow.restream.io/live"
},
{
"name": "Turkey (Istanbul)",
"url": "rtmp://istanbul.restream.io/live"
},
{
"name": "Israel (Tel Aviv)",
"url": "rtmp://telaviv.restream.io/live"
},
{
"name": "US-West (Seattle, WA)",
"url": "rtmp://seattle.restream.io/live"
2016-05-15 12:23:09 -07:00
},
{
"name": "US-West (San Jose, CA)",
"url": "rtmp://sanjose.restream.io/live"
},
{
"name": "US-Central (Dallas, TX)",
"url": "rtmp://dallas.restream.io/live"
2016-05-15 12:23:09 -07:00
},
{
"name": "US-East (Washington, DC)",
"url": "rtmp://washington.restream.io/live"
2016-05-15 12:23:09 -07:00
},
{
"name": "US-East (Miami, FL)",
"url": "rtmp://miami.restream.io/live"
},
{
"name": "US-East (Chicago, IL)",
"url": "rtmp://chicago.restream.io/live"
},
{
"name": "NA-East (Toronto, Canada)",
"url": "rtmp://toronto.restream.io/live"
},
2016-05-15 12:23:09 -07:00
{
"name": "SA (Saint Paul, Brazil)",
"url": "rtmp://saopaulo.restream.io/live"
},
{
"name": "India (Bangalore)",
"url": "rtmp://bangalore.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"
2016-05-15 12:23:09 -07:00
}
],
"recommended": {
"keyint": 2
}
},
{
"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": "SA (Sao Paulo, BR)",
"url": "rtmp://br.castr.io/static"
},
{
"name": "EU-West (London, UK)",
"url": "rtmp://uk.castr.io/static"
},
{
"name": "EU-Central (Frankfurt, DE)",
"url": "rtmp://fr.castr.io/static"
},
{
"name": "Russia (Moscow)",
"url": "rtmp://ru.castr.io/static"
},
{
"name": "Asia (Singapore)",
"url": "rtmp://sg.castr.io/static"
},
{
"name": "Asia (India)",
"url": "rtmp://in.castr.io/static"
},
{
"name": "Australia (Sydney)",
"url": "rtmp://au.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
}
},
2016-07-29 12:17:35 -07:00
{
"name": "Boomstream",
"servers": [
{
"name": "Default",
"url": "rtmp://live.boomstream.com/live"
}
]
},
2016-08-30 18:23:49 -07:00
{
"name": "Meridix Live Sports Platform",
"servers": [
{
"name": "Primary",
"url": "rtmp://publish.meridix.com/live"
}
],
"recommended": {
"max video bitrate": 3500
}
},
{
2020-06-04 19:21:49 -07:00
"name": "AfreecaTV",
"alt_names": [
"아프리카TV",
"Afreeca.TV"
],
"servers": [
2020-06-04 19:21:49 -07:00
{
"name": "Asia : Korea",
"url": "rtmp://rtmpmanager-freecat.afreeca.tv/app"
},
{
"name": "North America : US East",
2020-06-04 19:21:49 -07:00
"url": "rtmp://rtmp-esu.afreecatv.com/app"
},
{
"name": "North America : US West",
2020-06-04 19:21:49 -07:00
"url": "rtmp://rtmp-wsu.afreecatv.com/app"
},
{
"name": "South America : Brazil",
"url": "rtmp://rtmp-brz.afreecatv.com/app"
},
2020-10-04 21:54:04 -07:00
{
"name": "Europe : UK",
"url": "rtmp://rtmp-uk.afreecatv.com/app"
},
{
"name": "Asia : Singapore",
2020-06-04 19:21:49 -07:00
"url": "rtmp://rtmp-sgp.afreecatv.com/app"
}
],
"recommended": {
2020-06-04 19:21:49 -07:00
"keyint": 2,
"profile": "main",
2020-06-04 19:21:49 -07:00
"max video bitrate": 8000,
"max audio bitrate": 192
}
},
{
"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
}
2016-10-21 23:00:21 -07:00
},
{
"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
}
},
2016-10-21 23:00:21 -07:00
{
"name": "Picarto",
"servers": [
{
2022-02-12 13:57:15 -08:00
"name": "Autoselect closest server",
"url": "rtmp://live.us.picarto.tv/golive"
},
{
2022-02-12 13:57:15 -08:00
"name": "Los Angeles, USA",
"url": "rtmp://live.us-losangeles.picarto.tv/golive"
},
{
2022-02-12 13:57:15 -08:00
"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"
2016-10-21 23:00:21 -07:00
}
],
"recommended": {
"keyint": 2,
"profile": "main",
"max video bitrate": 3500
2016-10-21 23:00:21 -07:00
}
2017-02-22 09:10:25 -08:00
},
{
"name": "Livestream",
"servers": [
{
"name": "Primary",
"url": "rtmp://rtmpin.livestreamingest.com/rtmpin"
}
]
},
2020-01-21 14:22:16 -08:00
{
"name": "Uscreen",
"servers": [
{
"name": "Default",
"url": "rtmp://global-live.uscreen.app:5222/app"
2020-01-21 14:22:16 -08:00
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 8000,
"max audio bitrate": 192
}
2020-01-21 14:22:16 -08:00
},
{
"name": "Stripchat",
"servers": [
{
"name": "Auto",
"url": "rtmp://s-sd.doppiocdn.com/ext"
}
],
"recommended": {
"keyint": 2,
"profile": "main",
"bframes": 0,
"max video bitrate": 6000,
"max audio bitrate": 128,
"x264opts": "tune=zerolatency"
}
},
2021-01-06 15:01:01 -08:00
{
"name": "CamSoda",
"servers": [
{
"name": "North America",
2021-10-15 06:55:13 -07:00
"url": "rtmp://obs-ingest-na.livemediahost.com/cam_obs"
2021-01-06 15:01:01 -08:00
},
{
"name": "South America",
2021-10-15 06:55:13 -07:00
"url": "rtmp://obs-ingest-sa.livemediahost.com/cam_obs"
2021-01-06 15:01:01 -08:00
},
{
"name": "Asia",
2021-10-15 06:55:13 -07:00
"url": "rtmp://obs-ingest-as.livemediahost.com/cam_obs"
2021-01-06 15:01:01 -08:00
},
{
"name": "Europe",
2021-10-15 06:55:13 -07:00
"url": "rtmp://obs-ingest-eu.livemediahost.com/cam_obs"
2021-01-06 15:01:01 -08:00
},
{
"name": "Oceania",
2021-10-15 06:55:13 -07:00
"url": "rtmp://obs-ingest-oc.livemediahost.com/cam_obs"
2021-01-06 15:01:01 -08:00
}
],
"recommended": {
"supported resolutions": [
"1920x1080",
"1280x720",
"852x480",
"480x360"
],
"max fps": 30,
"max video bitrate": 6000,
"max audio bitrate": 160,
"x264opts": "tune=zerolatency"
}
},
{
"name": "Chaturbate",
"servers": [
{
2019-01-01 17:03:33 -08:00
"name": "Global Main Fastest - Recommended",
"url": "rtmp://live.stream.highwebmedia.com/live-origin"
},
{
2019-01-01 17:03:33 -08:00
"name": "Global Backup",
"url": "rtmp://live-backup.stream.highwebmedia.com/live-origin"
},
{
2019-01-01 17:03:33 -08:00
"name": "US West: Seattle, WA",
"url": "rtmp://live-sea.stream.highwebmedia.com/live-origin"
},
{
"name": "US West: Phoenix, AZ",
"url": "rtmp://live-phx.stream.highwebmedia.com/live-origin"
},
{
"name": "US Central: Salt Lake City, UT",
"url": "rtmp://live-slc.stream.highwebmedia.com/live-origin"
},
{
2019-01-01 17:03:33 -08:00
"name": "US Central: Chicago, IL",
"url": "rtmp://live-chi.stream.highwebmedia.com/live-origin"
},
{
2019-01-01 17:03:33 -08:00
"name": "US East: Atlanta, GA",
"url": "rtmp://live-atl.stream.highwebmedia.com/live-origin"
},
{
2019-01-01 17:03:33 -08:00
"name": "US East: Ashburn, VA",
"url": "rtmp://live-ash.stream.highwebmedia.com/live-origin"
},
{
2019-01-01 17:03:33 -08:00
"name": "South America: Sao Paulo, Brazil",
"url": "rtmp://live-gru.stream.highwebmedia.com/live-origin"
},
{
2019-01-01 17:03:33 -08:00
"name": "EU: Amsterdam, NL",
"url": "rtmp://live-nld.stream.highwebmedia.com/live-origin"
},
{
"name": "EU: Alblasserdam, NL",
"url": "rtmp://live-alb.stream.highwebmedia.com/live-origin"
},
{
"name": "EU: Frankfurt, DE",
"url": "rtmp://live-fra.stream.highwebmedia.com/live-origin"
},
{
"name": "EU: Belgrade, Serbia",
"url": "rtmp://live-srb.stream.highwebmedia.com/live-origin"
},
{
"name": "Asia: Singapore",
"url": "rtmp://live-sin.stream.highwebmedia.com/live-origin"
},
{
"name": "Asia: Tokyo, Japan",
"url": "rtmp://live-nrt.stream.highwebmedia.com/live-origin"
},
{
"name": "Australia: Sydney",
"url": "rtmp://live-syd.stream.highwebmedia.com/live-origin"
}
],
"recommended": {
"keyint": 2,
2019-01-01 17:03:33 -08:00
"max video bitrate": 50000,
"max audio bitrate": 192
}
},
{
"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
}
},
{
2021-04-19 18:07:08 -07:00
"name": "Twitter",
"common": true,
"stream_key_link": "https://studio.twitter.com/producer/sources",
2021-04-19 18:07:08 -07:00
"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"
},
2021-04-19 18:07:08 -07:00
{
"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"
},
2021-04-19 18:07:08 -07:00
{
"name": "Asia/Pacific: India",
"url": "rtmp://in.pscp.tv:80/x"
},
{
"name": "Asia/Pacific: Japan",
"url": "rtmp://jp.pscp.tv:80/x"
},
2021-04-19 18:07:08 -07:00
{
"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,
2021-04-19 18:07:08 -07:00
"max video bitrate": 12000,
"max audio bitrate": 128,
"max fps": 60
}
},
{
"name": "Switchboard Live",
"alt_names": [
"Switchboard Live (Joicaster)"
],
"servers": [
{
"name": "Global Zone (geo based)",
"url": "rtmp://ingest-global.switchboard.zone/live"
},
{
"name": "US Zone (geo based)",
"url": "rtmp://ingest-us.switchboard.zone/live"
},
{
"name": "US West",
"url": "rtmp://ingest-us-west.switchboard.zone/live"
},
{
"name": "US East",
"url": "rtmp://ingest-us-east.switchboard.zone/live"
},
{
"name": "US Central",
"url": "rtmp://ingest-us-central.switchboard.zone/live"
},
{
"name": "South America",
"url": "rtmp://ingest-sa.switchboard.zone/live"
},
{
"name": "EU (auto)",
"url": "rtmp://ingest-eu.switchboard.zone/live"
},
{
"name": "Australia",
"url": "rtmp://ingest-au.switchboard.zone/live"
},
{
"name": "APAC (auto)",
"url": "rtmp://ingest-asia.switchboard.zone/live"
},
{
"name": "UK",
"url": "rtmp://ingest-uk.switchboard.zone/live"
}
],
"recommended": {
"keyint": 2,
"profile": "high",
"max audio bitrate": 160,
"max video bitrate": 6000
}
},
{
"name": "Looch",
"common": false,
"servers": [
{
"name": "Primary Looch ingest server",
"url": "rtmp://ingest.looch.tv/live"
}
],
"recommended": {
"keyint": 2,
"profile": "main",
"max video bitrate": 6000,
"max audio bitrate": 160
}
},
{
"name": "Eventials",
"servers": [
{
"name": "Default",
"url": "rtmp://transmission.eventials.com/eventialsLiveOrigin"
}
],
"recommended": {
"keyint": 1,
"profile": "baseline",
"max video bitrate": 900,
"max audio bitrate": 96
}
},
{
"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
}
},
{
"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",
2020-06-23 03:13:25 -07:00
"max video bitrate": 4000,
"max audio bitrate": 192
}
},
{
"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
}
},
2020-02-11 23:11:17 -08:00
{
"name": "Trovo",
"alt_names": [
"Madcat"
],
"stream_key_link": "https://studio.trovo.live/mychannel/stream",
2020-02-11 23:11:17 -08:00
"servers": [
{
"name": "Default",
"url": "rtmp://livepush.trovo.live/live/"
2020-02-11 23:11:17 -08:00
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 9000,
"max audio bitrate": 160,
"x264opts": "scenecut=0"
}
2020-02-11 23:11:17 -08:00
},
2020-06-01 12:39:30 -07:00
{
"name": "Mixcloud",
"servers": [
{
"name": "Default",
"url": "rtmp://rtmp.mixcloud.com/broadcast"
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 6000,
"max audio bitrate": 320,
2021-04-07 03:46:18 -07:00
"supported resolutions": [
"1280x720",
"852x480",
"480x360"
],
"max fps": 30,
2020-06-01 12:39:30 -07:00
"x264opts": "scenecut=0"
}
},
{
"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
}
},
{
"name": "Vimeo",
"servers": [
{
"name": "Default",
"url": "rtmp://rtmp.cloud.vimeo.com/live"
}
]
},
{
"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"
}
2018-07-09 01:14:02 -07:00
},
{
"name": "KakaoTV",
"servers": [
{
"name": "Default",
"url": "rtmp://rtmp.play.kakao.com/kakaotv"
}
],
"recommended": {
"max video bitrate": 8000,
"max audio bitrate": 192
}
},
{
"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"
}
2018-08-10 13:27:21 -07:00
},
{
"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
}
},
2018-09-24 06:31:55 -07:00
{
"name": "DLive",
"servers": [
{
"name": "Default",
"url": "rtmp://stream.dlive.tv/live"
}
],
"recommended": {
2018-09-24 06:31:55 -07:00
"keyint": 2,
"max video bitrate": 6000,
"max audio bitrate": 160
}
},
{
"name": "Lightcast.com",
"servers": [
{
"name": "North America / East",
"url": "rtmp://us-east.live.lightcast.com/202E1F/default"
},
{
"name": "North America / West",
"url": "rtmp://us-west.live.lightcast.com/202E1F/default"
},
{
"name": "Europe / Amsterdam",
"url": "rtmp://europe.live.lightcast.com/202E1F/default"
},
{
"name": "Europe / Frankfurt",
"url": "rtmp://europe-fra.live.lightcast.com/202E1F/default"
},
{
"name": "Europe / Stockholm",
"url": "rtmp://europe-sto.live.lightcast.com/202E1F/default"
},
{
"name": "Asia / Hong Kong",
"url": "rtmp://asia.live.lightcast.com/202E1F/default"
},
{
"name": "Australia / Sydney",
"url": "rtmp://australia.live.lightcast.com/202E1F/default"
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 6000,
"max audio bitrate": 160
}
},
{
"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"
}
},
2019-08-23 17:58:00 -07:00
{
"name": "Chathostess",
2019-08-23 17:58:00 -07:00
"servers": [
{
"name": "Chathostess - Backup",
"url": "rtmp://wowza05.foobarweb.com/cmschatsys_video"
2019-08-23 17:58:00 -07:00
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 3600,
2019-08-23 17:58:00 -07:00
"max audio bitrate": 128
}
},
{
"name": "OnlyFans.com",
"servers": [
{
"name": "USA",
"url": "rtmp://route0.onlyfans.com/live"
},
{
"name": "Europe",
"url": "rtmp://route0-dc2.onlyfans.com/live"
}
],
"recommended": {
"keyint": 2,
"profile": "main",
"max video bitrate": 2500,
"max audio bitrate": 192,
"bframes": 0,
"x264opts": "tune=zerolatency"
}
2019-06-05 13:32:44 -07:00
},
{
"name": "YouNow",
"common": false,
"supported audio codecs": [
"opus"
],
"servers": [
{
"name": "younow.com",
2022-01-31 12:30:14 -08:00
"url": "https://api.younow.com/php/api/broadcast/ingest?id="
}
],
"recommended": {
"keyint": 2,
"output": "ftl_output",
"max audio bitrate": 160,
"max video bitrate": 7000,
"profile": "main",
"bframes": 0
}
},
2019-06-05 13:32:44 -07:00
{
"name": "Steam",
"common": false,
"servers": [
{
"name": "Default",
"url": "rtmp://ingest-rtmp.broadcast.steamcontent.com/app"
2019-06-05 13:32:44 -07:00
}
],
"recommended": {
"keyint": 2,
"profile": "high",
"max video bitrate": 7000,
"max audio bitrate": 128
}
},
2019-12-08 18:25:41 -08:00
{
"name": "Konduit.live",
"servers": [
{
"name": "Default",
"url": "rtmp://rtmp.konduit.live/live"
}
],
"recommended": {
"keyint": 2,
"x264opts": "scenecut=0"
}
2020-02-11 17:03:53 -08:00
},
{
"name": "LOCO",
"servers": [
{
"name": "Default",
"url": "rtmp://ivory-ingest.getloconow.com:1935/stream"
}
],
"recommended": {
"keyint": 2
}
2020-03-24 02:28:44 -07:00
},
{
"name": "niconico, premium member (ニコニコ生放送 プレミアム会員)",
"servers": [
{
"name": "Default",
"url": "rtmp://aliveorigin.dmc.nico/named_input"
}
],
"recommended": {
"keyint": 2,
"profile": "high",
"max audio bitrate": 192,
"max video bitrate": 5808,
"x264opts": "tune=zerolatency"
}
},
{
"name": "niconico, free member (ニコニコ生放送 一般会員)",
"servers": [
{
"name": "Default",
"url": "rtmp://aliveorigin.dmc.nico/named_input"
}
],
"recommended": {
"keyint": 2,
"profile": "high",
"max audio bitrate": 96,
"max video bitrate": 904,
"x264opts": "tune=zerolatency"
}
2020-04-15 15:29:36 -07:00
},
{
"name": "WASD.TV",
"servers": [
{
"name": "Automatic",
"url": "rtmp://push.rtmp.wasd.tv/live"
},
{
"name": "Russia, Moscow",
"url": "rtmp://ru-moscow.rtmp.wasd.tv/live"
},
{
"name": "Germany, Frankfurt",
"url": "rtmp://de-frankfurt.rtmp.wasd.tv/live"
},
{
"name": "Finland, Helsinki",
"url": "rtmp://fi-helsinki.rtmp.wasd.tv/live"
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 10000,
"max audio bitrate": 192
}
2020-04-21 06:08:30 -07:00
},
2020-04-23 19:28:25 -07:00
{
"name": "Nimo TV",
"servers": [
{
"name": "Global:1",
"url": "rtmp://wspush.rtmp.nimo.tv/live/"
},
{
"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
}
},
{
"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"
}
2020-06-20 14:42:13 -07:00
},
{
"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": "Bangalore 1",
"url": "rtmp://blr-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
}
2020-04-12 00:53:45 -07:00
},
{
"name": "api.video",
"servers": [
{
"name": "Default",
"url": "rtmp://broadcast.api.video/s"
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 20000,
"max audio bitrate": 192
}
2020-04-14 01:19:24 -07:00
},
{
"name": "SHOWROOM",
"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"
}
2021-01-02 12:29:13 -08:00
},
{
"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
}
},
{
"name": "Viloud",
"servers": [
{
"name": "Default",
"url": "rtmp://live.viloud.tv:5222/app"
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 5000,
"max audio bitrate": 160
}
2021-01-06 09:31:08 -08:00
},
{
"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": {
2021-01-23 16:45:37 -08:00
"keyint": 1,
2021-01-06 09:31:08 -08:00
"profile": "high",
"max fps": 60,
2021-01-23 16:45:37 -08:00
"max video bitrate": 10000,
2021-01-06 09:31:08 -08:00
"max audio bitrate": 192,
"x264opts": "tune=zerolatency scenecut=0"
}
2021-01-11 17:22:46 -08:00
},
{
"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
}
},
2021-01-11 17:22:46 -08:00
{
"name": "Glimesh",
"stream_key_link": "https://glimesh.tv/users/settings/stream",
"supported audio codecs": [
"opus"
],
2021-01-11 17:22:46 -08:00
"servers": [
{
"name": "North America - Chicago, United States",
"url": "ingest.kord.live.glimesh.tv"
},
{
"name": "North America - New York, United States",
"url": "ingest.kjfk.live.glimesh.tv"
},
{
"name": "North America - San Francisco, United States",
"url": "ingest.ksfo.live.glimesh.tv"
},
{
"name": "North America - Toronto, Canada",
"url": "ingest.cyyz.live.glimesh.tv"
},
{
"name": "Europe - Amsterdam, Netherlands",
"url": "ingest.eham.live.glimesh.tv"
},
{
"name": "Europe - Frankfurt, Germany",
"url": "ingest.eddf.live.glimesh.tv"
},
{
"name": "Europe - London, United Kingdom",
"url": "ingest.egll.live.glimesh.tv"
},
{
"name": "Asia - Bangalore, India",
"url": "ingest.vobl.live.glimesh.tv"
},
{
"name": "Asia - Singapore",
"url": "ingest.wsss.live.glimesh.tv"
}
],
"recommended": {
"keyint": 2,
"output": "ftl_output",
"max audio bitrate": 160,
"max video bitrate": 6000,
"bframes": 0,
"x264opts": "scenecut=0"
}
2021-01-04 20:56:05 -08:00
},
{
"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",
2021-01-04 20:56:05 -08:00
"servers": [
{
"name": "Default",
"url": "rtmp://a.station.openrec.tv:1935/live1"
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 5000,
"max audio bitrate": 160
}
},
{
"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"
}
2020-11-24 22:52:21 -08:00
},
{
"name": "Dacast",
"servers": [
{
"name": "Default",
"url": "https://developer.dacast.com/v3/encoder-setup/"
}
],
"recommended": {
"keyint": 1,
"profile": "high",
"max video bitrate": 7000,
"max audio bitrate": 128
}
},
{
"name": "Brime Live",
"stream_key_link": "https://brime.tv/studio",
"servers": [
{
"name": "North America - Ashburn, VA",
"url": "rtmp://ingest-us-ashburn.brime.tv/live"
},
{
"name": "North America - San Jose, CA",
"url": "rtmp://ingest-us-sanjose.brime.tv/live"
},
{
"name": "Europe / EMEA - Germany (Frankfurt)",
"url": "rtmp://ingest-eu-frankfurt.brime.tv/live"
}
],
"recommended": {
"max video bitrate": 30000,
"max audio bitrate": 320,
"x264opts": "scenecut=0"
}
2021-06-08 18:42:36 -07:00
},
{
2022-04-14 05:29:47 -07:00
"name": "Bilibili Live - RTMP | 哔哩哔哩直播 - RTMP",
"more_info_link": "https://link.bilibili.com/p/help/index#/tools-tutorial?id=9",
"stream_key_link": "https://link.bilibili.com/p/center/index#/my-room/start-live",
2022-04-14 05:29:47 -07:00
"alt_names": [
"Bilibili Live"
],
2021-06-08 18:42:36 -07:00
"servers": [
{
2022-04-14 05:29:47 -07:00
"name": "Default | 默认",
2021-06-08 18:42:36 -07:00
"url": "rtmp://live-push.bilivideo.com/live-bvc/"
}
]
},
{
"name": "Volume.com",
"stream_key_link": "https://volume.com/b?show_key=1&webrtc=0",
"servers": [
{
"name": "Default - Recommended",
"url": "rtmp://live.volume.com/live-origin"
},
{
"name": "US - West",
"url": "rtmp://live-pdx.volume.com/live-origin"
},
{
"name": "US - East",
"url": "rtmp://live-ash.volume.com/live-origin"
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 20000,
"max fps": 60
}
},
2021-08-16 06:53:48 -07:00
{
"name": "BoxCast",
"stream_key_link": "https://dashboard.boxcast.com/#/sources",
2021-08-16 06:53:48 -07:00
"servers": [
{
"name": "BoxCast",
"url": "rtmp://rtmp.boxcast.com/live"
2021-08-16 06:53:48 -07:00
}
]
2021-09-08 06:22:56 -07:00
},
{
"name": "Disciple Media",
"servers": [
{
"name": "Default",
"url": "rtmp://rtmp.disciplemedia.com/b-fme"
2021-09-08 06:22:56 -07:00
}
]
2021-10-22 01:00:15 -07:00
},
{
"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
}
2021-11-01 01:01:57 -07:00
},
{
"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/"
}
]
2021-11-08 02:41:04 -08:00
},
{
"name": "Utreon",
"servers": [
{
"name": "Default",
"url": "rtmp://live.utreon.com:5222/app"
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 5000,
"max audio bitrate": 160
}
2021-10-17 09:17:32 -07:00
},
{
"name": "Autistici.org Live",
"servers": [
{
"name": "Default",
"url": "rtmp://live.autistici.org/ingest"
2021-10-17 09:17:32 -07:00
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 2500,
"max audio bitrate": 128
}
2021-11-10 08:44:49 -08:00
},
{
"name": "PhoneLiveStreaming",
"stream_key_link": "https://app.phonelivestreaming.com/media/rtmp",
"servers": [
{
"name": "PhoneLiveStreaming",
"url": "rtmp://live.phonelivestreaming.com/live/"
2021-11-10 08:44:49 -08:00
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 128,
"max audio bitrate": 160
}
2021-11-10 10:00:27 -08:00
},
{
"name": "ManyVids",
"servers": [
{
"name": "Default",
"url": "rtmp://rtmp.str.manyvids.com:1935/live_stream/"
}
],
"recommended": {
"supported resolutions": [
"1280x720",
"960x540"
],
"bitrate matrix": [
{
"res": "960x540",
"fps": 30,
"max bitrate": 3000
},
{
"res": "1280x720",
"fps": 30,
"max bitrate": 4000
}
],
"keyint": 2,
"max video bitrate": 4000,
"max fps": 30
}
2021-12-10 06:25:11 -08:00
},
{
"name": "Fantasy.Club",
"stream_key_link": "https://fantasy.club/app/create-content/stream-now",
"more_info_link": "https://help.fantasy.club/",
"servers": [
{
"name": "US: East",
"url": "rtmp://live-east.fantasy.club/live"
},
{
"name": "US: West",
"url": "rtmp://live-west.fantasy.club/live"
},
{
"name": "Europe",
"url": "rtmp://live-eu.fantasy.club/live"
},
{
"name": "South America",
"url": "rtmp://live-sa.fantasy.club/live"
}
],
"recommended": {
"keyint": 2,
"profile": "high",
"bframes": 0,
"x264opts": "scenecut=0",
"supported resolutions": [
"1920x1080",
"1280x720",
"852x480"
],
"bitrate matrix": [
{
"res": "852x480",
"fps": 30,
"max bitrate": 1200
},
{
"res": "1280x720",
"fps": 30,
"max bitrate": 3600
},
{
"res": "1280x720",
"fps": 60,
"max bitrate": 4200
},
{
"res": "1920x1080",
"fps": 30,
"max bitrate": 5000
},
{
"res": "1920x1080",
"fps": 60,
"max bitrate": 7200
}
],
"max fps": 60,
"max video bitrate": 7200,
"max audio bitrate": 196
}
2022-02-22 22:01:28 -08:00
},
{
"name": "Shareplay",
2022-02-22 22:01:28 -08:00
"more_info_link": "https://shareplay.tv",
"servers": [
{
"name": "Default",
"url": "rtmp://shareplay.tv:833/live"
}
],
"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
}
2022-05-11 14:26:43 -07:00
},
{
"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
}
2022-06-21 01:26:32 -07:00
},
{
"name": "Mildom",
"more_info_link": "https://www.mildom.com/course/pc",
"stream_key_link": "https://www.mildom.com/creator/live",
"servers": [
{
"name": "Asia: Tokyo, Japan",
"url": "rtmp://live-tyo-tct.mildom.tv/live"
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 6000,
"max audio bitrate": 160
}
},
{
"name": "Nonolive",
"more_info_link": "https://wia.nonolive.com/views/obs_assistant_tutorial.html",
"stream_key_link": "https://www.nonolive.com/room_setting",
"servers": [
{
"name": "Asia: Hong Kong, China",
"url": "rtmp://live-hk-zl.nonolive.tv/live"
},
{
"name": "Asia: Jakarta, Indonesia",
"url": "rtmp://live-jkt-zl.nonolive.tv/live"
},
{
"name": "EU: Frankfurt, DE",
"url": "rtmp://live-fra-zl.nonolive.tv/live"
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 6000,
"max audio bitrate": 160
}
},
2022-07-29 21:48:28 -07:00
{
"name": "StreamVi",
"stream_key_link": "https://streamvi.ru/settings",
"servers": [
{
"name": "Default",
2022-08-26 00:25:25 -07:00
"url": "rtmp://live-default.streamvi.ru/live"
},
{
"name": "Russia (Moscow)",
"url": "rtmp://live-msk.streamvi.ru/live"
},
{
"name": "EU Central: Germany",
2022-07-29 21:48:28 -07:00
"url": "rtmp://live1.streamvi.ru/live"
}
]
2015-08-16 04:10:32 -07:00
}
]
}