Removed un-used dependency

This commit is contained in:
Fabrice Quenneville 2020-11-05 08:35:40 -05:00
parent 153338c53d
commit 28219a27d7
3 changed files with 10 additions and 5 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
test.sh
renamelist.txt

View File

@ -1,7 +1,12 @@
#!/usr/bin/env python3
'''Its a script!
./converter.py list -dir "/"
./converter.py convert -del -dir "/mnt/media/"
'''
MediaCurator is a Python command line tool to manage a media database.
* List all the video's and their codecs with or without filters
* Batch recode videos to more modern codecs (x265 / AV1) based on filters: extentions, codecs ...
ex:
./converter.py list -in:any -filters:old -dir:/mnt/media/ >> ../medlist.txt
./converter.py convert -del -in:any -filters:mpeg4 -out:x265,mkv -dir:"/mnt/media/Movies/"
./converter.py convert -del -verbose -in:avi,mpg -dir:/mnt/media/
'''

View File

@ -1,3 +1,2 @@
hurry.filesize
pathlib
distro