Rename flac_to_mp3.sh to flac_to_mp3

Correct arguments for the avconv command.
This commit is contained in:
Jeremy Gardais 2014-09-28 14:12:13 +02:00
parent dd6f5182c0
commit 472ecbdc54
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ if [ -d ${ALBUM_NAME} ]; then
for file in *.${OLD_FORMAT}
do
# -v error: display only if error
avconv -v "${LOG_LEVEL}" -I "${FILE}" -B "${BITRATE}" "${NEW_ALBUM_NAME}/${FILE%${OLD_FORMAT}}${NEW_FORMAT}"
avconv -v "${LOG_LEVEL}" -i "${FILE}" -b "${BITRATE}" "${NEW_ALBUM_NAME}/${FILE%${OLD_FORMAT}}${NEW_FORMAT}"
done
popd