fixed file naming thingy

This commit is contained in:
2025-11-06 21:53:32 +13:00
parent 6d9a078656
commit 8f8e2c744d
9 changed files with 541 additions and 15 deletions
@@ -52,6 +52,13 @@ class TestExtensionNormalization:
(".JPEG", ".jpeg"),
(".PNG", ".png"),
(".GIF", ".gif"),
# Test extensions without dots (common from yt-dlp)
("JPG", ".jpg"),
("JPEG", ".jpeg"),
("MP4", ".mp4"),
("WEBM", ".webm"),
("mp4", ".mp4"),
("gif", ".gif"),
]
for input_ext, expected in test_cases: