Skip to content

Commit

Permalink
remove data['add_file_to_pending_tasks'] = False allowing other plugi…
Browse files Browse the repository at this point in the history
…ns to proceed
  • Loading branch information
yajrendrag committed Jul 26, 2024
1 parent 5a6c9f2 commit b89fcf9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions source/convert_multichan_audio_to_2ch/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@

**<span style="color:#56adda">0.0.6</span>**
- remove setting data['add_file_to_pending_tasks'] = False to allow other plugins to continue

**<span style="color:#56adda">0.0.5</span>**
- add try-except block to catch audio streams without bit_rate parameter

Expand Down
2 changes: 1 addition & 1 deletion source/convert_multichan_audio_to_2ch/info.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
"on_worker_process": 0
},
"tags": "audio,encoder,ffmpeg,library file test",
"version": "0.0.5"
"version": "0.0.6"
}
2 changes: 1 addition & 1 deletion source/convert_multichan_audio_to_2ch/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b89fcf9

Please sign in to comment.