forked from localhorst/media_management_scripts
Compare commits
2 Commits
webm-suppo
...
fix-instal
Author | SHA1 | Date | |
---|---|---|---|
10d1954125
|
|||
084b27ecd4
|
0
check_metadata/checkMetadata/__init__.py
Normal file
0
check_metadata/checkMetadata/__init__.py
Normal file
@ -25,7 +25,7 @@ class MediaFile:
|
|||||||
duration: int #in sec
|
duration: int #in sec
|
||||||
|
|
||||||
def supported_file_extension(filename):
|
def supported_file_extension(filename):
|
||||||
if filename.endswith('.mp4') or filename.endswith('.mkv') or filename.endswith('.webm'):
|
if filename.endswith('.mp4') or filename.endswith('.mkv'):
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
@ -9,4 +9,7 @@ setup(
|
|||||||
"checkMetadata = checkMetadata.__main__:main"
|
"checkMetadata = checkMetadata.__main__:main"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
)
|
install_requires=[
|
||||||
|
'tqdm>=4.62.3'
|
||||||
|
]
|
||||||
|
)
|
||||||
|
0
codec_visualizer/codecVis/__init__.py
Normal file
0
codec_visualizer/codecVis/__init__.py
Normal file
Reference in New Issue
Block a user