Add script for transferring ripped dvds to transcoder

This commit is contained in:
2022-08-18 15:38:07 +02:00
parent d117ff2de4
commit b353b313ee
2 changed files with 128 additions and 0 deletions

View File

@ -89,6 +89,8 @@ def chdir_to_script_dir():
def mkdirs():
os.makedirs(TMP_DIR, exist_ok=True)
os.makedirs(RIPPED_DIR, exist_ok=True)
os.makedirs(os.path.join(RIPPED_DIR, "movie"), exist_ok=True)
os.makedirs(os.path.join(RIPPED_DIR, "series"), exist_ok=True)
def write_to_logfile(args, tag):