mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-08-30 17:58:37 +08:00
rtmp-services: Remove FTL entries
This commit is contained in:
Submodule plugins/obs-outputs/ftl-sdk deleted from d0c8469f66
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"$schema": "schema/package-schema.json",
|
||||
"url": "https://obsproject.com/obs2_update/rtmp-services/v5",
|
||||
"version": 256,
|
||||
"version": 257,
|
||||
"files": [
|
||||
{
|
||||
"name": "services.json",
|
||||
"version": 256
|
||||
"version": 257
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
"RTMP",
|
||||
"RTMPS",
|
||||
"HLS",
|
||||
"FTL",
|
||||
"SRT",
|
||||
"RIST",
|
||||
"WHIP"
|
||||
@@ -124,7 +123,6 @@
|
||||
"enum": [
|
||||
"rtmp_output",
|
||||
"ffmpeg_hls_muxer",
|
||||
"ftl_output",
|
||||
"ffmpeg_mpegts_muxer"
|
||||
]
|
||||
},
|
||||
@@ -235,7 +233,7 @@
|
||||
},
|
||||
{
|
||||
"$comment": "Require recommended output field if protocol field is not RTMP(S)",
|
||||
"if": { "required": ["protocol"], "properties": { "protocol": { "pattern": "^(HLS|SRT|RIST|FTL|WHIP)$" } } },
|
||||
"if": { "required": ["protocol"], "properties": { "protocol": { "pattern": "^(HLS|SRT|RIST|WHIP)$" } } },
|
||||
"then": { "properties": { "recommended": { "required": ["output"] } } }
|
||||
}
|
||||
]
|
||||
|
||||
@@ -1600,25 +1600,6 @@
|
||||
"h264"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "YouNow",
|
||||
"common": false,
|
||||
"protocol": "FTL",
|
||||
"servers": [
|
||||
{
|
||||
"name": "younow.com",
|
||||
"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
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "Steam",
|
||||
"common": false,
|
||||
|
||||
@@ -111,7 +111,6 @@ static const char *rtmp_custom_password(void *data)
|
||||
}
|
||||
|
||||
#define RTMPS_PREFIX "rtmps://"
|
||||
#define FTL_PREFIX "ftl://"
|
||||
#define SRT_PREFIX "srt://"
|
||||
#define RIST_PREFIX "rist://"
|
||||
|
||||
@@ -122,9 +121,6 @@ static const char *rtmp_custom_get_protocol(void *data)
|
||||
if (strncmp(service->server, RTMPS_PREFIX, strlen(RTMPS_PREFIX)) == 0)
|
||||
return "RTMPS";
|
||||
|
||||
if (strncmp(service->server, FTL_PREFIX, strlen(FTL_PREFIX)) == 0)
|
||||
return "FTL";
|
||||
|
||||
if (strncmp(service->server, SRT_PREFIX, strlen(SRT_PREFIX)) == 0)
|
||||
return "SRT";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user