From b2a5147ede37ad6d95ade5c3b03bd17a08467d9d Mon Sep 17 00:00:00 2001 From: Thomas Gideon Date: Thu, 11 Oct 2018 10:28:48 -0400 Subject: [PATCH] Fix ID3, switch to ffmpeg --- encode.bash | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/encode.bash b/encode.bash index 2cfbf37..e79c8c8 100755 --- a/encode.bash +++ b/encode.bash @@ -104,7 +104,7 @@ ${base_file}.mp3 # lame package from Lucid lacks the --ti switch for image # found eyed3 via a web search eyeD3 --add-image ${cover}:FRONT_COVER \ ---set-text-frame="TCOP:${copyright}" \ +--url-frame="WCOP:${copyright}" \ ${base_file}.mp3 echo "" @@ -134,8 +134,8 @@ echo "" # doesn't seem to result in the desired quality as tweaking # the quality setting (max 500)--200 was arrived at by iteratively # encoding the same raw audio and subjective listening to the results -avconv -i ${base_file}.wav \ --b ${aac_quality}k \ +ffmpeg -i ${base_file}.wav \ +-b:a ${aac_quality}k \ -metadata title="${title}" \ -metadata artist="${artist}" \ -metadata album="${album}" \