1 Commits

Author SHA1 Message Date
4a93c1f9db checkMetadata: support WebM containers 2023-02-24 16:22:02 +01:00
4 changed files with 2 additions and 5 deletions

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

View File

@ -9,7 +9,4 @@ setup(
"checkMetadata = checkMetadata.__main__:main"
]
},
install_requires=[
'tqdm>=4.62.3'
]
)