Rename flac_to_mp3.sh to flac_to_mp3
Correct arguments for the avconv command.
This commit is contained in:
parent
dd6f5182c0
commit
472ecbdc54
|
@ -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
|
Loading…
Reference in New Issue