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 3802c52ba0 - Show all commits

View file

@ -68,6 +68,9 @@ class Params:
video_ext = config["VIDEO"]["Extension"] if args.config else args.v_ext
video_codec = config["VIDEO"]["Codec"] if args.config else args.v_codec
source = Path(args.source)
if not source.exists():
print("Requested path does not exists. Exiting!")
exit(255)
dest = Path(source.name + f"_compressed")
return cls(