From b2997e6c179f0372822b99aac85152781b09e8e6 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Mon, 25 Jul 2022 07:18:12 -0400 Subject: [PATCH] Update image type --- tag-mp3s | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tag-mp3s b/tag-mp3s index c50a44e..00cccfa 100755 --- a/tag-mp3s +++ b/tag-mp3s @@ -32,7 +32,8 @@ def process_mp3(mp3_path) args += %W[--title=#{title}] args += %W[--track=#{track_number}] if track_number args += %W[--release-year=#{year}] if year - args += %W[--add-image=#{album_art}:FRONT_COVER] if album_art + # 2017 Outback likes to show picture for OTHER but not FRONT_COVER... + args += %W[--add-image=#{album_art}:OTHER] if album_art args += [mp3_path] system("eyeD3", *args) end