mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-10-29 18:00:15 +00:00
Fix avconv conversion for -f option
This commit is contained in:
@@ -29,7 +29,7 @@ def convert_with_avconv(input_song, output_song, folder, verbose):
|
|||||||
|
|
||||||
command = [avconv_path,
|
command = [avconv_path,
|
||||||
'-loglevel', level,
|
'-loglevel', level,
|
||||||
'-i', 'Music/' + input_song,
|
'-i', os.path.join(folder, input_song),
|
||||||
'-ab', '192k',
|
'-ab', '192k',
|
||||||
os.path.join(folder, output_song)]
|
os.path.join(folder, output_song)]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user