From 41cec5540ca3bc6a53432bc9fc0b86727c8aaa8e Mon Sep 17 00:00:00 2001 From: tytan652 Date: Wed, 19 Apr 2023 10:04:37 +0200 Subject: [PATCH] rtmp-services: Bump format version to v5 --- .../schema/{service-schema-v4.json => service-schema-v5.json} | 2 +- plugins/rtmp-services/data/services.json | 4 ++-- plugins/rtmp-services/rtmp-format-ver.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) rename plugins/rtmp-services/data/schema/{service-schema-v4.json => service-schema-v5.json} (98%) diff --git a/plugins/rtmp-services/data/schema/service-schema-v4.json b/plugins/rtmp-services/data/schema/service-schema-v5.json similarity index 98% rename from plugins/rtmp-services/data/schema/service-schema-v4.json rename to plugins/rtmp-services/data/schema/service-schema-v5.json index 0f2ee1097..983e18f5a 100644 --- a/plugins/rtmp-services/data/schema/service-schema-v4.json +++ b/plugins/rtmp-services/data/schema/service-schema-v5.json @@ -4,7 +4,7 @@ "properties": { "format_version": { "type": "integer", - "description": "Identifier for parsing this file.\n- v4 introduced 'ffmpeg_mpegts_muxer' to services/recommended/output\n - v3 introduced 'ffmpeg_hls_muxer' to services/recommended/output\n - v2 introduced 'alt_names' to services" + "description": "Identifier for parsing this file.\n- v5 introduced the notion of protocol and Enhanced RTMP \n- v4 introduced 'ffmpeg_mpegts_muxer' to services/recommended/output\n - v3 introduced 'ffmpeg_hls_muxer' to services/recommended/output\n - v2 introduced 'alt_names' to services" }, "services": { "type": "array", diff --git a/plugins/rtmp-services/data/services.json b/plugins/rtmp-services/data/services.json index 3101ce80d..f24b23e0a 100644 --- a/plugins/rtmp-services/data/services.json +++ b/plugins/rtmp-services/data/services.json @@ -1,6 +1,6 @@ { - "$schema": "schema/service-schema-v4.json", - "format_version": 4, + "$schema": "schema/service-schema-v5.json", + "format_version": 5, "services": [ { "name": "Twitch", diff --git a/plugins/rtmp-services/rtmp-format-ver.h b/plugins/rtmp-services/rtmp-format-ver.h index 8d23313a0..70a7d672b 100644 --- a/plugins/rtmp-services/rtmp-format-ver.h +++ b/plugins/rtmp-services/rtmp-format-ver.h @@ -1,3 +1,3 @@ #pragma once -static const int RTMP_SERVICES_FORMAT_VERSION = 4; +static const int RTMP_SERVICES_FORMAT_VERSION = 5;