From 8a2613ad29d6c09b0152e5f26b61f682d262abb5 Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Fri, 6 Dec 2013 09:13:57 +1030 Subject: [PATCH] log transcode command for #213 --- autoProcess/Transcoder.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/autoProcess/Transcoder.py b/autoProcess/Transcoder.py index af70481d..1ad49946 100644 --- a/autoProcess/Transcoder.py +++ b/autoProcess/Transcoder.py @@ -125,6 +125,10 @@ def Transcode_directory(dirName): Logger.debug("Error when removing transcoding target: %s", e) Logger.info("Transcoding video: %s", file) + cmd = "" + for item in command: + cmd = cmd + " " + item + Logger.debug("calling command:%s", cmd) result = 1 # set result to failed in case call fails. try: result = call(command)