From 346c0952e179b7253d90cc1c91c552579d73baca Mon Sep 17 00:00:00 2001 From: clinton-hall Date: Sat, 25 Feb 2017 10:08:05 +1030 Subject: [PATCH] minor fix for transcoder. --- core/transcoder/transcoder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/transcoder/transcoder.py b/core/transcoder/transcoder.py index 67b4fe39..f8417f6b 100644 --- a/core/transcoder/transcoder.py +++ b/core/transcoder/transcoder.py @@ -117,7 +117,7 @@ def getVideoDetails(videofile, img=None, bitbucket=None): def buildCommands(file, newDir, movieName, bitbucket): if isinstance(file, basestring): inputFile = file - if '"concat:' in file: + if 'concat:' in file: file = file.split('|')[0].replace('concat:', '') video_details, result = getVideoDetails(file) dir, name = os.path.split(file)