fixes to cli & handler

This commit is contained in:
janis
2023-03-15 12:32:50 +01:00
parent 0e15c2a31b
commit 70080953d0
3 changed files with 11 additions and 3 deletions

View File

@@ -10,12 +10,17 @@
import os
import sys
import bin.lib.ffmpeg
if ( sys.platform == 'win32' ):
import bin.lib.ffmpeg.ffmpeg
ffmpeg = bin.lib.ffmpeg.ffmpeg
else:
import bin.lib.ffmpeg
ffmpeg = bin.lib.ffmpeg
import configparser
import time
import shutil
ffmpeg = bin.lib.ffmpeg
# Loading the config file to get user preferred temp path
config = configparser.ConfigParser()