From fa0224b19fdab432b75293ebca2112ec46d04e23 Mon Sep 17 00:00:00 2001 From: Andy Date: Fri, 18 Jul 2025 23:21:13 +0000 Subject: [PATCH] fix: add video_only condition to subtitle track selection logic fixes issues where ccextractor would run even with -V enabled --- unshackle/commands/dl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/unshackle/commands/dl.py b/unshackle/commands/dl.py index e99af89..2ddc515 100644 --- a/unshackle/commands/dl.py +++ b/unshackle/commands/dl.py @@ -772,6 +772,7 @@ class dl: while ( not title.tracks.subtitles and not no_subs + and not video_only and len(title.tracks.videos) > video_track_n and any( x.get("codec_name", "").startswith("eia_")