fix: isQualityPoor

This commit is contained in:
Gabe
2025-10-24 21:44:54 +08:00
parent 48ad100a64
commit d56bd2920f

View File

@@ -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