From 2a300e64442ff86ce30cea367c2e424f75e77379 Mon Sep 17 00:00:00 2001 From: hockeygoalie35 Date: Wed, 19 Jun 2024 22:14:39 -0400 Subject: [PATCH 1/4] Add lyrics to beets config --- lidarr/beets-config-lidarr.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lidarr/beets-config-lidarr.yaml b/lidarr/beets-config-lidarr.yaml index e79ede2..9876a90 100644 --- a/lidarr/beets-config-lidarr.yaml +++ b/lidarr/beets-config-lidarr.yaml @@ -1,10 +1,15 @@ -plugins: chroma embedart lastgenre importadded +plugins: chroma embedart lastgenre importadded lyrics art_filename: folder threaded: yes per_disc_numbering: yes id3v23: no asciify_paths: true +lyrics: + auto: yes + sources: lrclib genius tekstowo + synced: yes + match: strong_rec_thresh: 0.10 # 0.04 medium_rec_thresh: 0.25 # 0.25 From 8d71b4ae7253593e7ed956f0cb190d9310169163 Mon Sep 17 00:00:00 2001 From: hockeygoalie35 Date: Wed, 19 Jun 2024 22:16:34 -0400 Subject: [PATCH 2/4] Update Jellyfish, Add BeautifulSoup BeautifulSoup is needed for Beets lyrics config --- lidarr/setup.bash | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lidarr/setup.bash b/lidarr/setup.bash index 64ce5fd..e00526d 100644 --- a/lidarr/setup.bash +++ b/lidarr/setup.bash @@ -24,7 +24,8 @@ apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing atomicpa npm install -g miraclx/freyr-js &&\ echo "*** install python packages ***" && \ pip install --upgrade --no-cache-dir --break-system-packages \ - jellyfish==0.10 \ + jellyfish==1.0.4 \ + beautifulsoup4 \ yt-dlp \ beets \ yq \ From d931a12b9c2c338ddefb5a8729d215c1bb415c77 Mon Sep 17 00:00:00 2001 From: hockeygoalie35 Date: Wed, 19 Jun 2024 23:03:28 -0400 Subject: [PATCH 3/4] Add lyrics to beets config --- lidarr/beets-config.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lidarr/beets-config.yaml b/lidarr/beets-config.yaml index f693333..3d2ea7d 100644 --- a/lidarr/beets-config.yaml +++ b/lidarr/beets-config.yaml @@ -1,10 +1,15 @@ -plugins: chroma embedart lastgenre +plugins: chroma embedart lastgenre lyrics art_filename: folder threaded: yes per_disc_numbering: yes id3v23: no asciify_paths: true +lyrics: + auto: yes + sources: lrclib genius tekstowo + synced: yes + match: strong_rec_thresh: 0.10 # 0.04 medium_rec_thresh: 0.25 # 0.25 From 11669c2f68006df780dea7e2144df171e950b046 Mon Sep 17 00:00:00 2001 From: hockeygoalie35 Date: Wed, 19 Jun 2024 23:36:28 -0400 Subject: [PATCH 4/4] pull latest Jellyfish --- lidarr/setup.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lidarr/setup.bash b/lidarr/setup.bash index e00526d..febe13b 100644 --- a/lidarr/setup.bash +++ b/lidarr/setup.bash @@ -24,7 +24,7 @@ apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing atomicpa npm install -g miraclx/freyr-js &&\ echo "*** install python packages ***" && \ pip install --upgrade --no-cache-dir --break-system-packages \ - jellyfish==1.0.4 \ + jellyfish \ beautifulsoup4 \ yt-dlp \ beets \