checkMetadata: support WebM containers #4

Open
hannesbraun wants to merge 1 commits from hannesbraun/media_management_scripts:webm-support into master
Showing only changes of commit 4a93c1f9db - Show all commits

View File

@ -25,7 +25,7 @@ class MediaFile:
duration: int #in sec
def supported_file_extension(filename):
if filename.endswith('.mp4') or filename.endswith('.mkv'):
if filename.endswith('.mp4') or filename.endswith('.mkv') or filename.endswith('.webm'):
return True
return False