From 28219a27d7c83676064b72b420ddb5cf34ecde1b Mon Sep 17 00:00:00 2001 From: Fabrice Quenneville Date: Thu, 5 Nov 2020 08:35:40 -0500 Subject: [PATCH] Removed un-used dependency --- .gitignore | 1 + curator.py | 11 ++++++++--- requirements.txt | 3 +-- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 73d41de..124e4e3 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ test.sh +renamelist.txt \ No newline at end of file diff --git a/curator.py b/curator.py index 1e11ba0..995a4d3 100755 --- a/curator.py +++ b/curator.py @@ -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/ ''' diff --git a/requirements.txt b/requirements.txt index 5eecc63..530cda3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,2 @@ hurry.filesize -pathlib -distro \ No newline at end of file +pathlib \ No newline at end of file