From 9230fb0aa4a5d8e942d2f6776fda42b9216c18a6 Mon Sep 17 00:00:00 2001 From: Sonic-Y3k Date: Fri, 15 May 2015 11:14:15 +0200 Subject: [PATCH] Fixed Crash Sox doesn't use "-o" anymore. --- src/baseclasses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/baseclasses.py b/src/baseclasses.py index 7623a3d..9f6f952 100644 --- a/src/baseclasses.py +++ b/src/baseclasses.py @@ -222,7 +222,7 @@ def encode(self): soxcommand = [u'sox', ] for i in range(0, len(self.chapters)): soxcommand.append(self.chapters[i].filename) - soxcommand += [u'-t', u'.wav', u'-o', u'-'] + soxcommand += [u'-t', u'.wav', u'-'] faaccommand = QString(self.encodeString) faaccommand = faaccommand.trimmed()