From 3e03b961b8ab897500dfea626f808c009f64e551 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 9 Apr 2021 10:36:21 +0200 Subject: Add ability for plugins to specify scale filter --- support/doc/plugins/guide.md | 7 ------- 1 file changed, 7 deletions(-) (limited to 'support/doc/plugins/guide.md') diff --git a/support/doc/plugins/guide.md b/support/doc/plugins/guide.md index 331813e4f..ea33b8d9f 100644 --- a/support/doc/plugins/guide.md +++ b/support/doc/plugins/guide.md @@ -328,8 +328,6 @@ function register (...) { Adding transcoding profiles allow admins to change ffmpeg encoding parameters and/or encoders. A transcoding profile has to be chosen by the admin of the instance using the admin configuration. -Transcoding profiles used for live transcoding must not provide any `videoFilters`. - ```js async function register ({ transcodingManager @@ -346,9 +344,6 @@ async function register ({ // All these options are optional and defaults to [] return { inputOptions: [], - videoFilters: [ - 'vflip' // flip the video vertically - ], outputOptions: [ // Use a custom bitrate '-b' + streamString + ' 10K' @@ -364,7 +359,6 @@ async function register ({ // And/Or support this profile for live transcoding transcodingManager.addLiveProfile(encoder, profileName, builder) - // Note: this profile will fail for live transcode because it specifies videoFilters } { @@ -401,7 +395,6 @@ async function register ({ const builder = () => { return { inputOptions: [], - videoFilters: [], outputOptions: [] } } -- cgit v1.2.3