From d56bd2920f70d7c68b273873555a365e62596d9e Mon Sep 17 00:00:00 2001 From: Gabe Date: Fri, 24 Oct 2025 21:44:54 +0800 Subject: [PATCH] fix: isQualityPoor --- src/subtitle/YouTubeCaptionProvider.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/subtitle/YouTubeCaptionProvider.js b/src/subtitle/YouTubeCaptionProvider.js index d88e35f..030203d 100644 --- a/src/subtitle/YouTubeCaptionProvider.js +++ b/src/subtitle/YouTubeCaptionProvider.js @@ -590,7 +590,7 @@ class YouTubeCaptionProvider { return subtitles; } - #isQualityPoor(lines, lengthThreshold = 250, percentageThreshold = 0.1) { + #isQualityPoor(lines, lengthThreshold = 250, percentageThreshold = 0.2) { if (lines.length === 0) return false; const longLinesCount = lines.filter( (line) => line.text.length > lengthThreshold