0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 13:08:50 +02:00

rtmp-services: Add ffmpeg-mpegts-muxer in schema v4

This adds ffmpeg-mpegts-muxer to the enum of output modules in schema.
Updates schema to v4.

Signed-off-by: pkv <pkv@obsproject.com>
This commit is contained in:
pkv 2022-09-11 10:24:10 +02:00 committed by Ryan Foster
parent fcb6df1f63
commit 88ac8098a1
3 changed files with 6 additions and 5 deletions

View File

@ -4,7 +4,7 @@
"properties": {
"format_version": {
"type": "integer",
"description": "Identifier for parsing this file.\n- v3 introduced 'ffmpeg_hls_muxer' to services/recommended/output\n - v2 introduced 'alt_names' to services"
"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"
},
"services": {
"type": "array",
@ -110,7 +110,8 @@
"enum": [
"rtmp_output",
"ffmpeg_hls_muxer",
"ftl_output"
"ftl_output",
"ffmpeg_mpegts_muxer"
]
},
"profile": {

View File

@ -1,6 +1,6 @@
{
"$schema": "schema/service-schema-v3.json",
"format_version": 3,
"$schema": "schema/service-schema-v4.json",
"format_version": 4,
"services": [
{
"name": "Twitch",

View File

@ -1,3 +1,3 @@
#pragma once
#define RTMP_SERVICES_FORMAT_VERSION 3
#define RTMP_SERVICES_FORMAT_VERSION 4