rtmp-services: Remove FTL entries

This commit is contained in:
derrod
2023-12-19 02:47:45 +01:00
committed by Rodney
parent 1cb1864cc0
commit e741a817e9
5 changed files with 3 additions and 29 deletions
+2 -2
View File
@@ -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"] } } }
}
]
-19
View File
@@ -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,
-4
View File
@@ -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";