From c1fb106dd58d06968cb2932dab47f67d96163aa1 Mon Sep 17 00:00:00 2001 From: Radek Czajka Date: Thu, 20 Oct 2011 13:27:36 +0200 Subject: [PATCH] subprecess call fix --- apps/archive/tasks.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/archive/tasks.py b/apps/archive/tasks.py index 941bbc6..bbabe6c 100755 --- a/apps/archive/tasks.py +++ b/apps/archive/tasks.py @@ -157,13 +157,13 @@ class Mp3Task(AudioFormatTask): def encode(in_path, out_path): # 44.1kHz 64kbps mono MP3 subprocess.check_call(['ffmpeg', - '-i', in_path, + '-i', in_path.encode('utf-8'), '-ar', '44100', '-ab', '64k', '-ac', '1', '-y', '-acodec', 'libmp3lame', - out_path + out_path.encode('utf-8') ]) @classmethod @@ -190,11 +190,11 @@ class OggTask(AudioFormatTask): def encode(in_path, out_path): # 44.1kHz 64kbps mono Ogg Vorbis subprocess.check_call(['ffmpeg', - '-i', in_path, + '-i', in_path.encode('utf-8'), '-ar', '44100', '-ab', '64k', '-ac', '1', '-y', '-acodec', 'libvorbis', - out_path + out_path.encode('utf-8') ]) -- 2.20.1