Compare commits

..

No commits in common. "eca3ba4a64f46101fd6fab6e396fd267224463c6" and "cc5f4f77da6037f2b7f023f25a7ce0ee7d360449" have entirely different histories.

7 changed files with 80 additions and 232 deletions

View File

@ -1,6 +0,0 @@
INFO=0
WARNING=5
ERROR=10
from .log import Log
from .logcat import LogCat

View File

@ -1,81 +0,0 @@
from datetime import datetime
from multiprocessing import Lock
from threading import Thread
from queue import Queue, Empty
from . import INFO, WARNING, ERROR
class Log(object):
def __init__(self, path, queue=None, print_output=True, timeout=1, level=WARNING):
self.__terminated = False
self.level = level
self.file_lock = Lock()
if not path.exists():
path.mkdir()
elif not path.is_dir():
raise Exception("Path exists and is not a directory")
self.log_dir = path
self.print = print_output
self.today_date = None
self.log_file = None
self.thread = Thread(target=self.write_loop, args=(64, timeout))
if queue is None:
self.queue = Queue()
else:
self.queue = queue
try:
self.thread.start()
except KeyboardInterrupt:
self.__terminated = True
except Exception:
raise Exception("Exception in main log loop.")
def stop(self):
self.__terminated = True
def write_loop(self, lines, timeout):
while not self.__terminated:
log_msg_list = []
try:
while len(log_msg_list) < lines:
try:
log_line = self.queue.get(block=True, timeout=timeout)
level, message = log_line
if self.print and level >= self.level:
print(message)
log_msg_list.append(f"{message.encode('cp1252', errors='replace').decode('cp1252')}\n")
except Empty:
break
finally:
self.write_log(log_msg_list)
self.save()
def save(self):
self.write_log(self.queue_get_remaining())
def queue_get_remaining(self):
log_msg_list = []
while True:
try:
log_msg_list.append(f"{self.queue.get(block=False)}\n")
except Empty:
break
return log_msg_list
def set_log_file(self):
with self.file_lock:
self.today_date = datetime.today().date()
today_string = self.today_date.strftime("%Y-%m-%d")
self.log_file = self.log_dir / f"{today_string}.log"
def write_log(self, log_msg_list: list):
if len(log_msg_list) > 0:
if self.today_date != datetime.today().date() or self.log_file is None:
self.set_log_file()
with self.file_lock:
with open(self.log_file, mode='a') as log_file:
log_file.writelines(log_msg_list)

View File

@ -1,32 +0,0 @@
from datetime import datetime
from multiprocessing import Queue
from . import INFO, WARNING, ERROR
class LogCat(object):
def __init__(self, log_queue: Queue, category: str):
self.queue = log_queue
self.category = category
def _write(self, level: int, function: str, message: str) -> None:
time = datetime.now().strftime("%Y-%m-%dT%H:%M:%S")
self.queue.put((level, f"{self.level_string(level)} | {time} - {self.category.upper()}.{function.upper()}: {message}"))
def info(self, function: str, message: str) -> None:
self._write(INFO, function, message)
def warning(self, function: str, message: str) -> None:
self._write(WARNING, function, message)
def error(self, function: str, message: str) -> None:
self._write(ERROR, function, message)
@staticmethod
def level_string(level: int) -> str:
if level == INFO:
return "INFO"
elif level == WARNING:
return "WARN"
elif level == ERROR:
return "ERR "

View File

@ -1,8 +1,6 @@
import argparse
from os.path import realpath
from pathlib import Path
from transcode import Transcoder
from log import Log
def get_args():
parser = argparse.ArgumentParser()
@ -13,11 +11,9 @@ def get_args():
def main(input_dir: Path, output_dir: Path, encoder: Path, out_extension: str = 'opus'):
wd = Path(realpath(__file__)).parent.parent
log_path = wd / "logs"
if encoder.parts[-1] == "qaac64.exe":
out_extension = "m4a"
transcoder = Transcoder(encoder, out_extension, input_dir, output_dir, log_path)
transcoder = Transcoder(encoder, out_extension, input_dir, output_dir)
transcoder.transcode()

View File

@ -1,3 +1,2 @@
from .file import File
from .worker import Worker
from .transcoder import Transcoder

View File

@ -1,61 +1,96 @@
from pathlib import Path
from multiprocessing import Pool, Manager, set_start_method
from log import Log, LogCat
from . import Worker
import shutil
import subprocess
from multiprocessing import Pool
from . import File
class Transcoder:
def __init__(self, encoder: Path, extension: str, input_root: Path, output_root: Path, log_path: Path):
def __init__(self, encoder: Path, extension: str, input_root: Path, output_root: Path):
self.encoder = encoder
self.extension = extension
self.input_root = input_root
self.output_root = output_root
self.log_path = log_path
self.__log = Log(log_path)
self.log = LogCat(self.__log.queue, "TCD")
def transcode(self):
transcode_list = []
try:
for artist in self.input_root.iterdir():
if artist.is_dir():
for album in artist.iterdir():
if album.is_dir():
for file in album.iterdir():
if file.is_file():
transcode_list.append(file)
else:
self.log.warning("TRK", f"Warning, skipping non-dir '{album}' found in artist '{artist.parts[-1]}'")
continue
else:
self.log.warning("TRK", f"Warning, skipping non-dir '{artist}' found in root")
continue
self._transcode(transcode_list, self.encoder)
finally:
self.__log.stop()
for artist in self.input_root.iterdir():
if artist.is_dir():
for album in artist.iterdir():
if album.is_dir():
for file in album.iterdir():
if file.is_file():
transcode_list.append(File(file))
else:
print(f"Warning, skipping non-dir '{album}' found in artist '{artist.parts[-1]}'")
continue
else:
print(f"Warning, skipping non-dir '{artist}' found in root")
continue
self._transcode(transcode_list, self.encoder)
def _transcode(self, transcode_list: list, encoder: Path, workers=16):
manager = Manager()
queue = manager.Queue()
log = Log(self.log_path, queue)
logcat = LogCat(log.queue, "TCD")
args = [(str(self.output_root), self.extension, track, encoder, logcat) for track in transcode_list]
with Pool(workers) as pool:
pool.starmap(self.worker, args)
pool.close()
pool.join()
log.stop()
worker_args = [(track, encoder) for track in transcode_list]
with Pool(workers) as p:
results = p.starmap_async(self.transcode_worker, worker_args)
p.close()
p.join()
for result in results.get():
print(result)
def _transcode_single_thread(self, transcode_list: list, encoder: Path):
log = Log(self.log_path)
logcat = LogCat(log.queue, "TCD")
worker_args = [(track, encoder) for track in transcode_list]
for track, encoder in worker_args:
self.worker(str(self.output_root), self.extension, track, encoder, logcat)
log.stop()
for args in worker_args:
print(self.transcode_worker(*args))
@staticmethod
def worker(output_root, extension, track, encoder, log):
w = Worker(output_root, extension)
w.transcode_worker(track, encoder, log)
def transcode_worker(self, track, encoder):
if track.is_art:
return self.copy_album_art(track)
elif track.is_audio:
return self.transcode_audio(track, encoder)
else:
return f"File {track.path} ignored"
def copy_album_art(self, file: File):
self.create_directories(file)
output_path = file.output_file(self.output_root, file.extension[1:])
if output_path.exists():
return f"Skipped {output_path}"
try:
shutil.copy(file.path, output_path)
return f"Successfully copied {output_path}"
except FileExistsError:
pass
except Exception:
return f"{file.path} failed to copy"
def transcode_audio(self, track, encoder):
enc_filename = encoder.parts[-1]
track_output = track.output_file(self.output_root, self.extension)
if track_output.exists():
return f"Skipped {track_output}"
self.create_directories(track)
if enc_filename == "opusenc.exe":
additional_args = ('--bitrate', '128', '--music')
subprocess_args = (str(encoder),) + additional_args + (str(track.path), str(track_output))
elif enc_filename == "qaac64.exe":
additional_args = (str(track), '-o', str(track_output), '--threading')
subprocess_args = (str(encoder),) + additional_args
try:
subprocess.run(subprocess_args, capture_output=True, text=True, check=True)
return f"Transcoded '{track}' successfully."
except Exception:
return f"ERROR: Transcoding of '{track}' failed."
def create_directories(self, track: File):
if not track.artist_out(self.output_root).exists():
try:
track.artist_out(self.output_root).mkdir()
except FileExistsError:
pass
if not track.album_out(self.output_root).exists():
try:
track.album_out(self.output_root).mkdir()
except FileExistsError:
pass

View File

@ -1,63 +0,0 @@
import shutil
import subprocess
from . import File
from pathlib import Path
class Worker:
def __init__(self, output_root, extension):
self.output_root = Path(output_root)
self.extension = extension
def transcode_worker(self, track, encoder, log):
track = File(track)
if track.is_art:
return self.copy_album_art(track, log)
elif track.is_audio:
return self.transcode_audio(track, encoder, log)
else:
log.info("WRK", f"File {track.path} ignored")
def copy_album_art(self, file: File, log):
self.create_directories(file)
output_path = file.output_file(self.output_root, file.extension[1:])
if output_path.exists():
log.info("ART", f"Skipped {output_path}")
return
try:
shutil.copy(file.path, output_path)
log.info("ART", f"Successfully copied {output_path}")
except FileExistsError:
pass
except Exception:
log.error("ART", f"{file.path} failed to copy")
def transcode_audio(self, track, encoder, log):
enc_filename = encoder.parts[-1]
track_output = track.output_file(self.output_root, self.extension)
if track_output.exists():
log.info("AUD", f"Skipped {track_output}")
return
self.create_directories(track)
if enc_filename == "opusenc.exe":
additional_args = ('--bitrate', '128', '--music')
subprocess_args = (str(encoder),) + additional_args + (str(track.path), str(track_output))
elif enc_filename == "qaac64.exe":
additional_args = (str(track), '-o', str(track_output), '--threading')
subprocess_args = (str(encoder),) + additional_args
try:
subprocess.run(subprocess_args, capture_output=True, text=True, check=True)
log.info("AUD", f"Transcoded '{track}' successfully.")
except Exception:
log.error("AUD", f"ERROR: Transcoding of '{track}' failed.")
def create_directories(self, track: File):
if not track.artist_out(self.output_root).exists():
try:
track.artist_out(self.output_root).mkdir()
except FileExistsError:
pass
if not track.album_out(self.output_root).exists():
try:
track.album_out(self.output_root).mkdir()
except FileExistsError:
pass