Use 192k bitrate for conversions from mp3
This commit is contained in:
parent
7408d7c13d
commit
8902d8f859
@ -147,7 +147,7 @@ while read -r mp3; do
|
|||||||
|
|
||||||
# convert to opus in transcode directory
|
# convert to opus in transcode directory
|
||||||
# TODO include cover picture (prefer file picture, cover.jpg second preference)
|
# TODO include cover picture (prefer file picture, cover.jpg second preference)
|
||||||
ffmpeg -nostdin -i "$mp3" -b:a 256k "${pathname}/transcode/$opusfile" &
|
ffmpeg -nostdin -i "$mp3" -b:a 192k "${pathname}/transcode/$opusfile" &
|
||||||
done < mp3files
|
done < mp3files
|
||||||
|
|
||||||
# wait for previous jobs to finish
|
# wait for previous jobs to finish
|
||||||
@ -172,7 +172,7 @@ while read -r mp3; do
|
|||||||
opusfile="${noextfile}.opus"
|
opusfile="${noextfile}.opus"
|
||||||
|
|
||||||
# convert opus in transcode to normalized
|
# convert opus in transcode to normalized
|
||||||
ffmpeg-normalize "transcode/$opusfile" -v -pr -c:a libopus -b:a 256k -ext opus &
|
ffmpeg-normalize "transcode/$opusfile" -v -pr -c:a libopus -b:a 192k -ext opus &
|
||||||
done < mp3files
|
done < mp3files
|
||||||
|
|
||||||
# go to musik raw folder
|
# go to musik raw folder
|
||||||
|
Loading…
Reference in New Issue
Block a user