From b89fcf997f2d80907a31474a54283987e4ee438b Mon Sep 17 00:00:00 2001 From: yajrendrag Date: Fri, 26 Jul 2024 07:39:52 -0600 Subject: [PATCH] remove data['add_file_to_pending_tasks'] = False allowing other plugins to proceed --- source/convert_multichan_audio_to_2ch/changelog.md | 3 +++ source/convert_multichan_audio_to_2ch/info.json | 2 +- source/convert_multichan_audio_to_2ch/plugin.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/source/convert_multichan_audio_to_2ch/changelog.md b/source/convert_multichan_audio_to_2ch/changelog.md index 60bce1e69..d59a0bdcf 100644 --- a/source/convert_multichan_audio_to_2ch/changelog.md +++ b/source/convert_multichan_audio_to_2ch/changelog.md @@ -1,4 +1,7 @@ +**0.0.6** +- remove setting data['add_file_to_pending_tasks'] = False to allow other plugins to continue + **0.0.5** - add try-except block to catch audio streams without bit_rate parameter diff --git a/source/convert_multichan_audio_to_2ch/info.json b/source/convert_multichan_audio_to_2ch/info.json index 2ff39109a..91d4240df 100644 --- a/source/convert_multichan_audio_to_2ch/info.json +++ b/source/convert_multichan_audio_to_2ch/info.json @@ -15,5 +15,5 @@ "on_worker_process": 0 }, "tags": "audio,encoder,ffmpeg,library file test", - "version": "0.0.5" + "version": "0.0.6" } diff --git a/source/convert_multichan_audio_to_2ch/plugin.py b/source/convert_multichan_audio_to_2ch/plugin.py index e2553b7f7..72e4f8ae4 100644 --- a/source/convert_multichan_audio_to_2ch/plugin.py +++ b/source/convert_multichan_audio_to_2ch/plugin.py @@ -101,7 +101,7 @@ def on_library_management_file_test(data): for stream in range(0, len(streams)): logger.debug("Audio stream '{}' is multichannel audio - convert stream".format(streams[stream])) else: - data['add_file_to_pending_tasks'] = False +# data['add_file_to_pending_tasks'] = False logger.debug("do not add file '{}' to task list - no multichannel audio streams".format(abspath)) return data