From 12dda31891b338396d13a880d41fffca639bd1d4 Mon Sep 17 00:00:00 2001 From: Ade Date: Fri, 9 Aug 2013 08:30:24 +1200 Subject: [PATCH] Encoder fix up missed a couple of commas --- headphones/music_encoder.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/headphones/music_encoder.py b/headphones/music_encoder.py index 3ae6216b..2c54974c 100644 --- a/headphones/music_encoder.py +++ b/headphones/music_encoder.py @@ -224,9 +224,9 @@ def command(encoder,musicSource,musicDest,albumPath): opts = [] if headphones.ADVANCEDENCODER =='': if headphones.ENCODEROUTPUTFORMAT=='ogg': - opts.extend(['-acodec libvorbis']) + opts.extend(['-acodec', 'libvorbis']) if headphones.ENCODEROUTPUTFORMAT=='m4a': - opts.extend(['-strict experimental']) + opts.extend(['-strict', 'experimental']) if headphones.ENCODERVBRCBR=='cbr': opts.extend(['-ar', str(headphones.SAMPLINGFREQUENCY), '-ab', str(headphones.BITRATE) + 'k']) elif headphones.ENCODERVBRCBR=='vbr':