From 3c75baaa6c6be26ae4ca9567614c01613bc4936a Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Fri, 8 Sep 2023 18:45:00 -0400 Subject: [PATCH] v1.3 - Improve lyric extraction when tag is a different case... --- lidarr/LyricExtractor.bash | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/lidarr/LyricExtractor.bash b/lidarr/LyricExtractor.bash index 3c18239..fba1feb 100644 --- a/lidarr/LyricExtractor.bash +++ b/lidarr/LyricExtractor.bash @@ -1,5 +1,5 @@ #!/usr/bin/env bash -scriptVersion="1.2" +scriptVersion="1.3" scriptName="LyricExtractor" #### Import Settings @@ -56,11 +56,23 @@ find "$getFolderPath" -type f -regex ".*/.*\.\(flac\|opus\|m4a\|mp3\)" -print0 | if [ "$fileExt" == "flac" ]; then log "Processing :: $getAlbumFolderName :: $fileName :: Getting Lyrics from embedded metadata" getLyrics="$(ffprobe -loglevel 0 -print_format json -show_format -show_streams "$file" | jq -r ".format.tags.LYRICS" 2>/dev/null | sed "s/null//g" | sed "/^$/d")" + if [ ! -z "$getLyrics" ]; then + getLyrics="$(ffprobe -loglevel 0 -print_format json -show_format -show_streams "$file" | jq -r ".format.tags.Lyrics" 2>/dev/null | sed "s/null//g" | sed "/^$/d")" + fi + if [ ! -z "$getLyrics" ]; then + getLyrics="$(ffprobe -loglevel 0 -print_format json -show_format -show_streams "$file" | jq -r ".format.tags.lyrics" 2>/dev/null | sed "s/null//g" | sed "/^$/d")" + fi fi if [ "$fileExt" == "opus" ]; then log "Processing :: $getAlbumFolderName :: $fileName :: Getting Lyrics from embedded metadata" getLyrics="$(ffprobe -loglevel 0 -print_format json -show_format -show_streams "$file" | jq -r ".streams[].tags.LYRICS" 2>/dev/null | sed "s/null//g" | sed "/^$/d")" + if [ ! -z "$getLyrics" ]; then + getLyrics="$(ffprobe -loglevel 0 -print_format json -show_format -show_streams "$file" | jq -r ".streams[].tags.Lyrics" 2>/dev/null | sed "s/null//g" | sed "/^$/d")" + fi + if [ ! -z "$getLyrics" ]; then + getLyrics="$(ffprobe -loglevel 0 -print_format json -show_format -show_streams "$file" | jq -r ".streams[].tags.lyrics" 2>/dev/null | sed "s/null//g" | sed "/^$/d")" + fi fi if [ ! -z "$getLyrics" ]; then