New upstream version 26.0.2+dfsg1
This commit is contained in:
parent
bc27b6c1ca
commit
040dcc3fc2
23 changed files with 226 additions and 184 deletions
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"url": "https://obsproject.com/obs2_update/rtmp-services",
|
||||
"version": 147,
|
||||
"version": 148,
|
||||
"files": [
|
||||
{
|
||||
"name": "services.json",
|
||||
"version": 147
|
||||
"version": 148
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -759,6 +759,10 @@
|
|||
"name": "North America : US West",
|
||||
"url": "rtmp://rtmp-wsu.afreecatv.com/app"
|
||||
},
|
||||
{
|
||||
"name": "Europe : UK",
|
||||
"url": "rtmp://rtmp-uk.afreecatv.com/app"
|
||||
},
|
||||
{
|
||||
"name": "Asia : Singapore",
|
||||
"url": "rtmp://rtmp-sgp.afreecatv.com/app"
|
||||
|
|
@ -1726,32 +1730,6 @@
|
|||
"max audio bitrate": 160
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "weabook.live",
|
||||
"servers": [
|
||||
{
|
||||
"name": "N.Virgina, US",
|
||||
"url": "rtmp://us-api.weabook.live/live"
|
||||
},
|
||||
{
|
||||
"name": "Singapore, SG",
|
||||
"url": "rtmp://sg-api.weabook.live/live"
|
||||
},
|
||||
{
|
||||
"name": "Tokyo, JP",
|
||||
"url": "rtmp://jp-api.weabook.live/live"
|
||||
},
|
||||
{
|
||||
"name": "Premium Streaming",
|
||||
"url": "rtmp://premium.rtmp.weabook.live/live"
|
||||
}
|
||||
],
|
||||
"recommended": {
|
||||
"keyint": 2,
|
||||
"max audio bitrate": 256,
|
||||
"max video bitrate": 20480
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Taryana - Apachat | تاریانا - آپاچت",
|
||||
"servers": [
|
||||
|
|
|
|||
|
|
@ -515,8 +515,10 @@ static void apply_video_encoder_settings(obs_data_t *settings,
|
|||
}
|
||||
|
||||
item = json_object_get(recommended, "bframes");
|
||||
if (json_is_integer(item))
|
||||
obs_data_set_int(settings, "bf", 0);
|
||||
if (json_is_integer(item)) {
|
||||
int bframes = json_integer_value(item);
|
||||
obs_data_set_int(settings, "bf", bframes);
|
||||
}
|
||||
|
||||
item = json_object_get(recommended, "x264opts");
|
||||
if (json_is_string(item)) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue