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