feat: Add extraction and formatting for special edition information in filenames

This commit is contained in:
sha
2025-12-26 20:56:22 +00:00
parent b21308c7b8
commit 691d1e7b2d
7 changed files with 101 additions and 8 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ class MediaInfoExtractor:
self.audio_tracks = []
self.sub_tracks = []
def _get_frame_class_from_height(self, height: int) -> str:
def _get_frame_class_from_height(self, height: int) -> str | None:
"""Get frame class from video height using FRAME_CLASSES constant"""
for frame_class, info in FRAME_CLASSES.items():
if height == info['nominal_height']: