From e1ef35b6b9bd1dc5727c34e620e3bf79d3882fd7 Mon Sep 17 00:00:00 2001 From: Ritiek Malhotra Date: Tue, 11 Jul 2017 22:02:13 +0530 Subject: [PATCH] Fix avconv conversion for -f option --- core/convert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/convert.py b/core/convert.py index 8ed8bec..9696535 100644 --- a/core/convert.py +++ b/core/convert.py @@ -29,7 +29,7 @@ def convert_with_avconv(input_song, output_song, folder, verbose): command = [avconv_path, '-loglevel', level, - '-i', 'Music/' + input_song, + '-i', os.path.join(folder, input_song), '-ab', '192k', os.path.join(folder, output_song)]