Compare commits

1 Commits

Author SHA1 Message Date
hannesbraun 773c2f8ea8 checkMetadata: support WebM containers 2025-08-26 16:39:18 +02:00
+1 -1
View File
@@ -27,7 +27,7 @@ class MediaFile:
duration: int #in sec
def supported_file_extension(filename):
if filename.endswith('.mp4') or filename.endswith('.mkv') or filename.endswith('.m4v'):
if filename.endswith('.mp4') or filename.endswith('.mkv') or filename.endswith('.webm') or filename.endswith('.m4v'):
return True
return False