From 914fc46d8529ebce1014a59ae0c4f268e8194dce Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Fri, 15 Jan 2021 19:28:06 -0500 Subject: [PATCH] added logging for args.render --- auto_editor/__main__.py | 1 + auto_editor/renderVideo.py | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/auto_editor/__main__.py b/auto_editor/__main__.py index 3d3837752..9c93f10d1 100755 --- a/auto_editor/__main__.py +++ b/auto_editor/__main__.py @@ -580,6 +580,7 @@ def newOutputName(oldFile: str, exa=False, data=False, exc=False) -> str: except ImportError: args.render = 'opencv' + log.debug(f'Using {args.render} method') if(args.render == 'av'): from renderVideo import renderAv renderAv(ffmpeg, INPUT_FILE, args, chunks, speeds, TEMP, log) diff --git a/auto_editor/renderVideo.py b/auto_editor/renderVideo.py index f3d4cb424..c07176f1e 100644 --- a/auto_editor/renderVideo.py +++ b/auto_editor/renderVideo.py @@ -158,5 +158,3 @@ def findState(chunks, cframe) -> int: log.debug('Writing the output file.') else: log.conwrite('Writing the output file.') - -