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

1046 lines
34 KiB
JSON
Raw Normal View History

{
"format_version": 1,
"services": [
{
"name": "Twitch",
"common": true,
"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: Frankfurt, DE",
"url": "rtmp://live-fra.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: Milan, Italy",
"url": "rtmp://live-mil.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, Columbia",
"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 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": 160,
"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 / YouTube Gaming",
"common": true,
"servers": [
{
"name": "Primary YouTube ingest server",
"url": "rtmp://a.rtmp.youtube.com/live2"
},
{
"name": "Backup YouTube ingest server",
"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": "Smashcast",
"common": true,
"servers": [
{
"name": "Default",
"url": "rtmp://live.hitbox.tv/push"
},
{
"name": "EU-North: Amsterdam, Netherlands",
"url": "rtmp://live.ams.hitbox.tv/push"
},
{
"name": "EU-West: Frankfurt, Germany",
"url": "rtmp://live.fra.hitbox.tv/push"
},
{
"name": "EU-West: Paris, France",
"url": "rtmp://live.cdg.hitbox.tv/push"
},
{
"name": "EU-West: London, United Kingdom",
"url": "rtmp://live.lhr.hitbox.tv/push"
},
{
"name": "EU-Central: Nurnberg, Germany",
"url": "rtmp://live.nbg.hitbox.tv/push"
},
{
"name": "EU-East: Vienna, Austria",
"url": "rtmp://live.vie.hitbox.tv/push"
},
{
"name": "EU-South: Milan, Italia",
"url": "rtmp://live.mxp.hitbox.tv/push"
},
{
"name": "Russia: Moscow",
"url": "rtmp://live.dme.hitbox.tv/push"
},
{
"name": "US-East: New York - 1",
"url": "rtmp://live.jfk.hitbox.tv/push"
},
{
"name": "US-East: New York - 2",
"url": "rtmp://live.nyc.hitbox.tv/push"
},
{
"name": "US-Central: Denver",
"url": "rtmp://live.den.hitbox.tv/push"
},
{
"name": "US-West: San Francisco",
"url": "rtmp://live.sfo.hitbox.tv/push"
},
{
"name": "US-West: Los Angeles",
"url": "rtmp://live.lax.hitbox.tv/push"
},
{
"name": "South America: Sao Paulo, Brazil",
"url": "rtmp://live.gru.hitbox.tv/push"
},
{
"name": "South Korea: Seoul",
"url": "rtmp://live.icn.hitbox.tv/push"
},
{
"name": "Asia: Singapore",
"url": "rtmp://live.sin.hitbox.tv/push"
},
{
"name": "China: Hong Kong",
"url": "rtmp://live.hkg.hitbox.tv/push"
},
{
"name": "Oceania: Sydney, Australia",
"url": "rtmp://live.syd.hitbox.tv/push"
}
],
"recommended": {
"keyint": 2,
"profile": "high",
"max video bitrate": 3500,
"max audio bitrate": 320
}
},
{
"name": "Mixer.com - FTL",
"common": true,
"servers": [
{
"name": "US: Dallas, TX",
"url": "ingest-dal.mixer.com"
},
{
"name": "US: San Jose, CA",
"url": "ingest-sjc.mixer.com"
},
{
"name": "US: Seattle, WA",
"url": "ingest-sea.mixer.com"
},
{
"name": "US: Washington DC",
"url": "ingest-wdc.mixer.com"
},
{
"name": "Canada: Toronto",
"url": "ingest-tor.mixer.com"
},
{
"name": "EU: London",
"url": "ingest-lon.mixer.com"
},
{
"name": "EU: Amsterdam",
"url": "ingest-ams.mixer.com"
},
{
"name": "EU: Milan",
"url": "ingest-mil.mixer.com"
},
{
"name": "EU: Paris",
"url": "ingest-par.mixer.com"
},
{
"name": "EU: Frankfurt",
"url": "ingest-fra.mixer.com"
},
{
"name": "EU: Oslo",
"url": "ingest-osl.mixer.com"
},
{
"name": "Brazil: Sao Paulo",
"url": "ingest-sao.mixer.com"
},
{
"name": "Australia: Melbourne",
"url": "ingest-mel.mixer.com"
},
{
"name": "Australia: Sydney",
"url": "ingest-syd.mixer.com"
},
{
"name": "Mexico: Mexico City",
"url": "ingest-mex.mixer.com"
},
{
"name": "Asia: Hong Kong",
"url": "ingest-hkg.mixer.com"
},
{
"name": "Asia: Tokyo",
"url": "ingest-tok.mixer.com"
},
{
"name": "South Korea: Seoul",
"url": "ingest-seo.mixer.com"
},
{
"name": "India: Chennai",
"url": "ingest-che.mixer.com"
}
],
"recommended": {
"keyint": 3,
"output": "ftl_output",
"max audio bitrate": 160,
"max video bitrate": 10000,
"profile": "main",
"bframes": 0
}
},
{
"name": "Mixer.com - RTMP",
"common": true,
"servers": [
{
"name": "US: Dallas, TX",
"url": "rtmp://ingest-dal.mixer.com:1935/beam"
},
{
"name": "US: San Jose, CA",
"url": "rtmp://ingest-sjc.mixer.com:1935/beam"
2016-02-15 06:16:16 -08:00
},
{
"name": "US: Seattle, WA",
"url": "rtmp://ingest-sea.mixer.com:1935/beam"
},
{
"name": "US: Washington DC",
"url": "rtmp://ingest-wdc.mixer.com:1935/beam"
},
{
"name": "Canada: Toronto",
"url": "rtmp://ingest-tor.mixer.com:1935/beam"
},
{
"name": "EU: London",
"url": "rtmp://ingest-lon.mixer.com:1935/beam"
},
{
"name": "EU: Amsterdam",
"url": "rtmp://ingest-ams.mixer.com:1935/beam"
2016-02-15 06:16:16 -08:00
},
{
"name": "EU: Milan",
"url": "rtmp://ingest-mil.mixer.com:1935/beam"
},
{
"name": "EU: Paris",
"url": "rtmp://ingest-par.mixer.com:1935/beam"
},
2016-02-15 06:16:16 -08:00
{
"name": "EU: Frankfurt",
"url": "rtmp://ingest-fra.mixer.com:1935/beam"
},
{
"name": "EU: Oslo",
"url": "rtmp://ingest-osl.mixer.com:1935/beam"
},
{
"name": "Brazil: Sao Paulo",
"url": "rtmp://ingest-sao.mixer.com:1935/beam"
},
{
"name": "Australia: Melbourne",
"url": "rtmp://ingest-mel.mixer.com:1935/beam"
},
2016-02-15 06:16:16 -08:00
{
"name": "Australia: Sydney",
"url": "rtmp://ingest-syd.mixer.com:1935/beam"
},
{
"name": "Mexico: Mexico City",
"url": "rtmp://ingest-mex.mixer.com:1935/beam"
},
{
"name": "Asia: Hong Kong",
"url": "rtmp://ingest-hkg.mixer.com:1935/beam"
},
{
"name": "Asia: Tokyo",
"url": "rtmp://ingest-tok.mixer.com:1935/beam"
},
{
"name": "South Korea: Seoul",
"url": "rtmp://ingest-seo.mixer.com:1935/beam"
},
{
"name": "India: Chennai",
"url": "rtmp://ingest-che.mixer.com:1935/beam"
}
],
"recommended": {
"keyint": 3,
"max audio bitrate": 160,
"max video bitrate": 10000,
"profile": "main"
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": "DailyMotion",
"common": true,
"servers": [
{
"name": "Primary",
"url": "rtmp://publish.dailymotion.com/publish-dm"
}
]
},
{
"name": "WatchPeopleCode.com",
"servers": [
{
"name": "Primary",
"url": "rtmp://streaming.watchpeoplecode.com/live"
}
]
},
{
"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": "GamePlank",
"servers": [
{
"name": "Primary",
"url": "rtmp://www.gameplank.tv/live"
}
]
},
{
"name": "Vaughn Live / iNSTAGIB",
"servers": [
{
"name": "US: Primary",
"url": "rtmp://live.vaughnsoft.net/live"
},
{
"name": "US: Chicago, IL",
"url": "rtmp://live-ord.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": "EU: Amsterdam, NL",
"url": "rtmp://live-ams.vaughnsoft.net/live"
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 3500,
"max audio bitrate": 160
}
},
{
"name": "Breakers.TV",
"servers": [
{
"name": "US: Primary",
"url": "rtmp://live.vaughnsoft.net/live"
},
{
"name": "US: Chicago, IL",
"url": "rtmp://live-ord.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": "EU: Amsterdam, NL",
"url": "rtmp://live-ams.vaughnsoft.net/live"
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 3500,
"max audio bitrate": 160
}
},
{
"name": "CyberGame.TV",
"servers": [
{
"name": "RU Origin",
"url": "rtmp://st.cybergame.tv:1953/live"
},
{
"name": "RU Premium",
"url": "rtmp://premium.cybergame.tv:1953/premium"
}
]
},
{
"name": "DJlive.pl",
"servers": [
{
"name": "Default",
"url": "rtmp://live.djlive.pl/live"
}
],
"recommended": {
"keyint": 1,
"profile": "high",
"max video bitrate": 1300,
"max audio bitrate": 320
}
},
{
"name": "Facebook Live",
"common": true,
"servers": [
{
"name": "Default",
"url": "rtmp://rtmp-api.facebook.com:80/rtmp/"
}
],
"recommended": {
"keyint": 2,
"profile": "main",
"max video bitrate": 4000,
"max audio bitrate": 128
}
2016-05-15 12:23:09 -07:00
},
{
"name": "Restream.io",
"common": true,
"servers": [
{
"name": "EU-West (London, GB)",
"url": "rtmp://eu-london.restream.io/live"
},
{
"name": "EU-West (Amsterdam, NL)",
"url": "rtmp://eu-ams.restream.io/live"
},
{
"name": "EU-West (Luxembourg)",
"url": "rtmp://eu-luxembourg.restream.io/live"
},
2016-05-15 12:23:09 -07:00
{
"name": "EU-Central (Frankfurt, DE)",
"url": "rtmp://eu-central.restream.io/live"
2016-05-15 12:23:09 -07:00
},
{
"name": "EU-East (Falkenstein, DE)",
"url": "rtmp://eu-east.restream.io/live"
2016-05-15 12:23:09 -07:00
},
{
"name": "EU-South (Madrid, Spain)",
"url": "rtmp://eu-madrid.restream.io/live"
},
2016-05-15 12:23:09 -07:00
{
"name": "Russia (Moscow)",
"url": "rtmp://ru.restream.io/live"
},
{
"name": "US-West (Seattle, WA)",
"url": "rtmp://us-seattle.restream.io/live"
2016-05-15 12:23:09 -07:00
},
{
"name": "US-West (San Jose, CA)",
"url": "rtmp://us-west.restream.io/live"
},
{
"name": "US-Central (Dallas, TX)",
"url": "rtmp://us-central.restream.io/live"
2016-05-15 12:23:09 -07:00
},
{
"name": "US-East (Washington, DC)",
"url": "rtmp://us-east.restream.io/live"
2016-05-15 12:23:09 -07:00
},
{
"name": "NA-East (Toronto, Canada)",
"url": "rtmp://na-toronto.restream.io/live"
},
2016-05-15 12:23:09 -07:00
{
"name": "SA (Saint Paul, Brazil)",
2016-05-15 12:23:09 -07:00
"url": "rtmp://sa.restream.io/live"
},
{
"name": "Asia (Singapore)",
"url": "rtmp://singapore.restream.io/live"
},
{
"name": "Asia (Seoul, South Korea)",
"url": "rtmp://seoul.restream.io/live"
},
{
"name": "Australia (Sydney)",
"url": "rtmp://au.restream.io/live"
2016-05-15 12:23:09 -07:00
}
],
"recommended": {
"keyint": 2
}
},
{
"name": "Nood",
"servers": [
{
"name": "EU Central: Frankfurt, Germany",
2016-05-20 11:43:29 -07:00
"url": "rtmp://broadcast-frf.nood.tv/20D2AB/live"
},
{
"name": "EU North: Amsterdam, Netherlands",
2016-05-20 11:43:29 -07:00
"url": "rtmp://broadcast-ams.nood.tv/20D2AB/live"
},
{
"name": "EU West: Stockholm, Sweden",
2016-05-20 11:43:29 -07:00
"url": "rtmp://broadcast-arn.nood.tv/20D2AB/live"
},
{
"name": "US East: Washington, DC",
2016-05-20 11:43:29 -07:00
"url": "rtmp://broadcast-dca.nood.tv/20D2AB/live"
},
{
"name": "US West: Los Angeles, CA",
2016-05-20 11:43:29 -07:00
"url": "rtmp://broadcast-oxr.nood.tv/20D2AB/live"
},
{
"name": "Australia: Sydney",
2016-05-20 11:43:29 -07:00
"url": "rtmp://broadcast-syd.nood.tv/20D2AB/live"
},
{
"name": "Asia: Hong Kong, China",
2016-05-20 11:43:29 -07:00
"url": "rtmp://broadcast-hhp.nood.tv/20D2AB/live"
}
],
"recommended": {
"keyint": 2,
"profile": "main",
"max video bitrate": 3500,
"max audio bitrate": 192
}
2016-07-29 12:17:35 -07:00
},
{
"name": "Boomstream",
"servers": [
{
"name": "Default",
"url": "rtmp://live.boomstream.com/live"
}
]
},
{
"name": "Stream.live",
"servers": [
{
"name": "Default",
"url": "rtmp://media.stream.live:1935/live"
}
],
"recommended": {
"keyint": 2,
"profile": "main",
"max video bitrate": 2500,
"max audio bitrate": 160
}
},
{
"name": "Coderwall",
"servers": [
{
"name": "Primary",
"url": "rtmp://live.coderwall.com/coderwall"
}
],
"recommended": {
"max video bitrate": 1500
}
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
}
},
{
"name": "Afreeca.TV",
"servers": [
{
"name": "North America : US East",
"url": "rtmp://rtmpmanager-aws-en-east.afreeca.tv/live"
},
{
"name": "North America : US West",
"url": "rtmp://rtmpmanager-aws-en-west.afreeca.tv/live"
},
{
"name": "Asia : Singapore",
"url": "rtmp://rtmpmanager-aws-sg.afreeca.tv/live"
},
{
"name": "Asia : South Korea",
"url": "rtmp://rtmpmanager-en-ko.afreeca.tv/live"
}
],
"recommended": {
"keyint": 1,
"profile": "main",
"max video bitrate": 5000,
"max audio bitrate": 192
}
},
{
"name": "アフリカTV",
"servers": [
{
"name": "Japan",
"url": "rtmp://rtmpmanager-aws-jp.afreeca.tv/live/"
},
{
"name": "South Korea",
"url": "rtmp://rtmpmanager-jp.afreeca.tv/live/"
}
],
"recommended": {
"keyint": 1,
"profile": "main",
"max video bitrate": 5000,
"max audio bitrate": 192
}
},
{
"name": "艾菲卡TV",
"servers": [
{
"name": "Taiwan",
"url": "rtmp://rtmpmanager-gcp-tw.afreeca.tv/live/"
},
{
"name": "South Korea",
"url": "rtmp://rtmpmanager-tw-ko.afreeca.tv/live/"
}
],
"recommended": {
"keyint": 1,
"profile": "main",
"max video bitrate": 5000,
"max audio bitrate": 192
}
},
{
"name": "아프리카TV",
"servers": [
{
"name": "Korea",
"url": "rtmp://rtmpmanager-freecat.afreeca.tv/app/"
}
],
"recommended": {
"keyint": 1,
"profile": "main",
"max video bitrate": 5000,
"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": "Picarto",
"servers": [
{
"name": "USA/Canada",
"url": "rtmp://live.us.picarto.tv/golive"
}
],
"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": "Pandora TV Korea",
"servers": [
{
"name": "Default",
"url": "rtmp://plive.pandora.tv:80/mediaHub"
}
]
},
{
"name": "LiveStream",
"servers": [
{
"name": "Primary",
"url": "rtmp://rtmpin.livestreamingest.com/rtmpin"
}
]
},
{
"name": "Chaturbate",
"servers": [
{
"name": "Default Global Auto Select - Recommended",
"url": "rtmp://live.stream.highwebmedia.com/live-origin"
},
{
"name": "US West",
"url": "rtmp://live-us-west.stream.highwebmedia.com/live-origin"
},
{
"name": "US Central",
"url": "rtmp://live-us-central.stream.highwebmedia.com/live-origin"
},
{
"name": "US East",
"url": "rtmp://live-us-east.stream.highwebmedia.com/live-origin"
},
{
"name": "Europe West",
"url": "rtmp://live-eu-west.stream.highwebmedia.com/live-origin"
},
{
"name": "Europe East",
"url": "rtmp://live-eu-east.stream.highwebmedia.com/live-origin"
},
{
"name": "Asia/Pacific South",
"url": "rtmp://live-as-south.stream.highwebmedia.com/live-origin"
},
{
"name": "Asia/Pacific North-East",
"url": "rtmp://live-as-northeast.stream.highwebmedia.com/live-origin"
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 20000,
"max audio bitrate": 192
}
},
{
"name": "LiveEdu.tv",
"common": true,
"servers": [
{
"name": "US",
"url": "rtmp://usmedia11.liveedu.tv/liveedutv"
},
{
"name": "EU",
"url": "rtmp://eumedia8.liveedu.tv/liveedutv"
},
{
"name": "Asia",
"url": "rtmp://apmedia1.liveedu.tv/liveedutv"
}
]
},
{
"name": "Twitter / Periscope",
"common": true,
"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: 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: Japan",
"url": "rtmp://jp.pscp.tv:80/x"
},
{
"name": "Asia/Pacific: Singapore",
"url": "rtmp://sg.pscp.tv:80/x"
}
],
"recommended": {
"keyint": 2,
"max video bitrate": 800,
"max audio bitrate": 96
}
},
{
"name": "Switchboard Live (Joicaster)",
"servers": [
{
"name": "Default - Performance Global",
"url": "rtmp://ingest-global-a.switchboard.zone/live"
},
{
"name": "US West",
"url": "rtmp://ingest-us-west.a.switchboard.zone/live"
},
{
"name": "US East",
"url": "rtmp://ingest-us-east.a.switchboard.zone/live"
},
{
"name": "Europe West",
"url": "rtmp://ingest-eu-west.a.switchboard.zone/live"
},
{
"name": "Europe Central",
"url": "rtmp://ingest-us-east.a.switchboard.zone/live"
},
{
"name": "Australia East",
"url": "rtmp://ingest-au-east.a.switchboard.zone/live"
},
{
"name": "Asia Central",
"url": "rtmp://ingest-as-central.a.switchboard.zone/live"
}
]
2015-08-16 04:10:32 -07:00
}
]
}