import time from Video import videoservice from Universal import loggingservice tmp_RunScript = True tmp_Initialized = False tmp_Debug = True tmp_OutputFile = False tmp_Library = 1 tmp_Resume = False logger = loggingservice.Output(tmp_Debug, tmp_OutputFile) while tmp_RunScript: if not tmp_Initialized: video_process = videoservice.VideoService() tmp_Initialized = True if tmp_Resume: #TODO Implement Resume to VideoService pass else: video_process.startNewProcess(tmp_Library) tmp_Library += 1 print("Goodbye")