Add description of the new -f option in README.md; Fix minor issues

This commit is contained in:
Linus
2017-07-11 18:48:02 +02:00
parent e1ef35b6b9
commit 75be7285c0
3 changed files with 9 additions and 2 deletions

View File

@@ -10,7 +10,7 @@ def song(input_song, output_song, folder, avconv=False, verbose=False):
if avconv:
exit_code = convert_with_avconv(input_song, output_song, folder, verbose)
else:
exit_code = convert_with_ffmpeg(input_song, output_song, folder, verbose)
exit_code = convert_with_ffmpeg(input_song, output_song, folder, verbose)
return exit_code
return 0