Version 2.0 from testing branch #1

Merged
olesteep merged 105 commits from testing into master 2025-02-18 23:38:05 +03:00
Showing only changes of commit 224359f251 - Show all commits

View file

@ -1,3 +1,4 @@
from modules import configloader
from modules import printer
from shutil import copyfile
from glob import glob
@ -76,6 +77,7 @@ def check_file_existing(folder, file):
if not len(glob(f"{folder}/{os.path.splitext(file)[0]}*")):
global errors_count
errors_count += 1
if not configloader.config['FFMPEG']['HideErrors']:
printer.error(f"{file} not processed. It can be ffmpeg error or file type is unsupported. "
f"You can set '-loglevel error' in ffmpeg config to see full error.")