From fecb21dfabab03cdbfc83a8253eb7f67677c471c Mon Sep 17 00:00:00 2001 From: "jeanchristophe.mqt@gmail.com" Date: Fri, 10 Jan 2025 18:05:43 +0100 Subject: [PATCH] Changed channels layout to channels count --- .../ffmpegCommandSetDefaultAudioStream/1.0.0/index.js | 4 ++-- .../ffmpegCommandSetDefaultAudioStream/1.0.0/index.ts | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/FlowPlugins/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetDefaultAudioStream/1.0.0/index.js b/FlowPlugins/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetDefaultAudioStream/1.0.0/index.js index dd372a220..19e3be734 100644 --- a/FlowPlugins/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetDefaultAudioStream/1.0.0/index.js +++ b/FlowPlugins/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetDefaultAudioStream/1.0.0/index.js @@ -57,10 +57,10 @@ var details = function () { return ({ label: 'Channels ', name: 'channels', type: 'string', - defaultValue: '5.1', + defaultValue: '6', inputUI: { type: 'dropdown', - options: ['7.1', '5.1', '2.0'], + options: ['8', '6', '2'], }, tooltip: 'Specify what number of channels should be used as the default channel.', }, diff --git a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetDefaultAudioStream/1.0.0/index.ts b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetDefaultAudioStream/1.0.0/index.ts index dd88c0ffd..2f5f7e092 100644 --- a/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetDefaultAudioStream/1.0.0/index.ts +++ b/FlowPluginsTs/CommunityFlowPlugins/ffmpegCommand/ffmpegCommandSetDefaultAudioStream/1.0.0/index.ts @@ -60,10 +60,10 @@ const details = (): IpluginDetails => ({ label: 'Channels ', name: 'channels', type: 'string', - defaultValue: '5.1', + defaultValue: '6', inputUI: { type: 'dropdown', - options: ['7.1', '5.1', '2.0'], + options: ['8', '6', '2'], }, tooltip: 'Specify what number of channels should be used as the default channel.', },