feat: Increase height threshold for frame class extraction and add test file

This commit is contained in:
sHa
2025-12-27 05:32:15 +00:00
parent e87769f44b
commit de56de7dd0
2 changed files with 1 additions and 1 deletions

View File

@@ -78,7 +78,7 @@ class MediaInfoExtractor:
min_diff = diff
closest_height = info['nominal_height']
if closest_height and min_diff <= 50:
if closest_height and min_diff <= 100:
return f"{closest_height}{scan_type}"
return None