177 lines
7.6 KiB
Python
Executable File
177 lines
7.6 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
'''
|
|
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 -in:avi,mpg -dir:/mnt/media/
|
|
'''
|
|
|
|
import sys
|
|
|
|
from library.bcolors import BColors
|
|
from library.video import Video
|
|
from library.medialibrary import MediaLibrary
|
|
from library.tools import detect_ffmpeg, user_confirm
|
|
|
|
def main():
|
|
'''
|
|
MediaCurator's main function
|
|
'''
|
|
|
|
# confirm that the command has enough parameters
|
|
if len(sys.argv) < 2:
|
|
print(f"{BColors.FAIL}ERROR: Command not understood, please see documentation.{BColors.ENDC}")
|
|
|
|
# confirm that ffmpeg in indeed installed
|
|
ffmpeg_version = detect_ffmpeg()
|
|
if not ffmpeg_version:
|
|
print(f"{BColors.FAIL}No ffmpeg version detected{BColors.ENDC}")
|
|
exit()
|
|
print(f"{BColors.OKBLUE}ffmpeg version detected: {ffmpeg_version}{BColors.ENDC}")
|
|
|
|
# Get/load command parameters
|
|
directories = []
|
|
files = []
|
|
inputs = []
|
|
filters = []
|
|
outputs = []
|
|
printop = []
|
|
|
|
for arg in sys.argv:
|
|
# Confirm with the user that he selected to delete found files
|
|
if "-del" in arg:
|
|
print(f"{BColors.WARNING}WARNING: Delete option selected!{BColors.ENDC}")
|
|
if not user_confirm(f"{BColors.WARNING}Are you sure you wish to delete all found results after selected operations are succesfull ? [Y/N] ?{BColors.ENDC}"):
|
|
print(f"{BColors.OKGREEN}Exiting!{BColors.ENDC}")
|
|
exit()
|
|
elif "-in:" in arg:
|
|
inputs += arg[4:].split(",")
|
|
elif "-filters:" in arg:
|
|
filters += arg[9:].split(",")
|
|
elif "-out:" in arg:
|
|
outputs += arg[5:].split(",")
|
|
elif "-print:" in arg:
|
|
printop += arg[7:].split(",")
|
|
elif "-files:" in arg:
|
|
files += arg[7:].split(",,")
|
|
elif "-dir:" in arg:
|
|
directories += arg[5:].split(",,")
|
|
|
|
# Loading the media library
|
|
if len(files) > 0:
|
|
medialibrary = MediaLibrary(files = files, inputs = inputs, filters = filters)
|
|
elif len(directories) > 0:
|
|
medialibrary = MediaLibrary(directories = directories, inputs = inputs, filters = filters)
|
|
else:
|
|
print(f"{BColors.FAIL}ERROR: No files or directories selected.{BColors.ENDC}")
|
|
|
|
|
|
# Actions
|
|
if sys.argv[1] == "list":
|
|
|
|
# Pulling list of marked videos / original keys for the medialibrary.videos dictionary
|
|
keylist = [filepath for filepath in medialibrary.videos if medialibrary.videos[filepath].useful]
|
|
keylist.sort()
|
|
|
|
for filepath in keylist:
|
|
if medialibrary.videos[filepath].useful:
|
|
if "formated" in printop or "verbose" in printop:
|
|
if medialibrary.videos[filepath].error:
|
|
print(f"{BColors.FAIL}{medialibrary.videos[filepath].fprint()}{BColors.ENDC}")
|
|
else:
|
|
print(medialibrary.videos[filepath].fprint())
|
|
else:
|
|
if medialibrary.videos[filepath].error:
|
|
print(f"{BColors.FAIL}{medialibrary.videos[filepath]}{BColors.ENDC}")
|
|
else:
|
|
print(medialibrary.videos[filepath])
|
|
|
|
# if marked for deletion delete and unwatch the video
|
|
if "-del" in sys.argv:
|
|
medialibrary.unwatch(filepath, delete = True)
|
|
elif sys.argv[1] == "test":
|
|
|
|
# Pulling list of marked videos / original keys for the medialibrary.videos dictionary
|
|
keylist = [filepath for filepath in medialibrary.videos if medialibrary.videos[filepath].useful]
|
|
keylist.sort()
|
|
|
|
for filepath in keylist:
|
|
if medialibrary.videos[filepath].useful:
|
|
if "formated" in printop or "verbose" in printop:
|
|
if medialibrary.videos[filepath].error:
|
|
print(f"{BColors.FAIL}{medialibrary.videos[filepath].fprint()}{BColors.ENDC}")
|
|
else:
|
|
print(medialibrary.videos[filepath].fprint())
|
|
else:
|
|
if medialibrary.videos[filepath].error:
|
|
print(f"{BColors.FAIL}{medialibrary.videos[filepath]}{BColors.ENDC}")
|
|
else:
|
|
print(medialibrary.videos[filepath])
|
|
|
|
# if marked for deletion delete and unwatch the video
|
|
if "-del" in sys.argv:
|
|
medialibrary.unwatch(filepath, delete = True)
|
|
|
|
elif sys.argv[1] == "convert":
|
|
counter = 0
|
|
|
|
# Pulling list of marked videos / original keys for the medialibrary.videos dictionary
|
|
keylist = [filepath for filepath in medialibrary.videos if medialibrary.videos[filepath].useful]
|
|
keylist.sort()
|
|
|
|
for filepath in keylist:
|
|
counter += 1
|
|
# Setting required variables
|
|
if "av1" in outputs:
|
|
vcodec = "av1"
|
|
else:
|
|
vcodec = "x265"
|
|
|
|
# Verbosing
|
|
print(f"{BColors.OKGREEN}****** Starting conversion {counter} of {len(keylist)}: '{BColors.OKCYAN}{medialibrary.videos[filepath].filename_origin}{BColors.OKGREEN}' from {BColors.OKCYAN}{medialibrary.videos[filepath].codec}{BColors.OKGREEN} to {BColors.OKCYAN}{vcodec}{BColors.OKGREEN}...{BColors.ENDC}")
|
|
print(f"{BColors.OKCYAN}Original file:{BColors.ENDC}")
|
|
if "formated" in printop or "verbose" in printop:
|
|
print(medialibrary.videos[filepath].fprint())
|
|
else:
|
|
print(medialibrary.videos[filepath])
|
|
|
|
print(f"{BColors.OKGREEN}Converting please wait...{BColors.ENDC}", end="\r")
|
|
|
|
# Converting
|
|
if medialibrary.videos[filepath].convert(verbose = "verbose" in printop):
|
|
# Mark the job as done
|
|
medialibrary.videos[filepath].useful = False
|
|
|
|
# Scan the new video
|
|
newfpath = medialibrary.videos[filepath].path + medialibrary.videos[filepath].filename_new
|
|
|
|
medialibrary.videos[newfpath] = Video(newfpath, verbose = "verbose" in printop)
|
|
|
|
# Verbose
|
|
print(f"{BColors.OKGREEN}Successfully converted '{medialibrary.videos[filepath].filename_origin}'{BColors.OKCYAN}({medialibrary.videos[filepath].filesize}mb){BColors.OKGREEN} to '{medialibrary.videos[newfpath].filename_origin}'{BColors.OKCYAN}({medialibrary.videos[newfpath].filesize}mb){BColors.OKGREEN}, {BColors.OKCYAN}new file:{BColors.ENDC}")
|
|
|
|
|
|
if "formated" in printop or "verbose" in printop:
|
|
if medialibrary.videos[newfpath].error:
|
|
print(f"{BColors.FAIL}{medialibrary.videos[newfpath].fprint()}{BColors.ENDC}")
|
|
else:
|
|
print(medialibrary.videos[newfpath].fprint())
|
|
else:
|
|
if medialibrary.videos[newfpath].error:
|
|
print(f"{BColors.FAIL}{medialibrary.videos[newfpath]}{BColors.ENDC}")
|
|
else:
|
|
print(medialibrary.videos[newfpath])
|
|
|
|
# if marked for deletion delete and unwatch the video
|
|
if "-del" in sys.argv:
|
|
medialibrary.unwatch(filepath, delete = True)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main() |