diff --git a/lib/tags/getInfos::FLAC b/lib/tags/getInfos::FLAC index db6e3ac..4c90454 100644 --- a/lib/tags/getInfos::FLAC +++ b/lib/tags/getInfos::FLAC @@ -1,5 +1,5 @@ #!/usr/bin/env bash -getInfosFLAC_version='FLAC-5' +getInfosFLAC_version='FLAC-6' tagreaders+=( "$getInfosFLAC_version" ) getInfos::FLAC() { local \ @@ -17,6 +17,7 @@ getInfos::FLAC() { --show-tag=COMPOSER \ --show-tag=DATE \ --show-tag=DISCNUMBER \ + --show-tag=FMPS_RATING \ --show-tag=GENRE \ --show-tag=PERFORMER \ --show-tag=RELEASECOUNTRY \ @@ -34,6 +35,7 @@ getInfos::FLAC() { disc=$(gettag discnumber) genre=$(gettag genre) performer=$(gettag performer) + rating=$((gettag fmps_rating)) releasecountry=$(gettag releasecountry) replaygain_alb=$(gettag replaygain_album_gain) replaygain_trk=$(gettag replaygain_track_gain) diff --git a/lib/tags/getInfos::Opus b/lib/tags/getInfos::Opus index 0736762..1f8e8ea 100644 --- a/lib/tags/getInfos::Opus +++ b/lib/tags/getInfos::Opus @@ -1,5 +1,5 @@ #!/usr/bin/env bash -getInfosOpus_version='Opus-4' +getInfosOpus_version='Opus-5' tagreaders+=( "$getInfosOpus_version" ) getInfos::Opus() { tagreader="$getInfosOpus_version" @@ -15,6 +15,7 @@ getInfos::Opus() { artist=$(gettag artist) composer=$(gettag composer) disc=$(gettag discnumber) + rating=$(gettag fmps_rating) genre=$(gettag genre) performer=$(gettag performer) releasecountry=$(gettag releasecountry) diff --git a/lib/tags/getInfos::ffmpeg b/lib/tags/getInfos::ffmpeg index f98709d..4813c1b 100644 --- a/lib/tags/getInfos::ffmpeg +++ b/lib/tags/getInfos::ffmpeg @@ -1,5 +1,5 @@ #!/usr/bin/env bash -getInfosffmpeg_version='ffmpeg-9' +getInfosffmpeg_version='ffmpeg-10' tagreaders+=( "$getInfosffmpeg_version" ) getInfos::ffmpeg() { tagreader="$getInfosffmpeg_version" @@ -15,6 +15,7 @@ getInfos::ffmpeg() { artist, \ composer, \ disc, \ + fmps_rating, genre, \ TOPE, \ releasecountry, \ @@ -40,6 +41,7 @@ getInfos::ffmpeg() { disc=$(gettag TAG:disc) genre=$(gettag TAG:genre) performer=$(gettag TAG:TOPE) + rating=$((gettag fmps_rationg)) releasecountry=$(gettag TAG:releasecountry) [[ -z "$releasecountry" ]] \ && releasecountry=$(gettag "TAG:MusicBrainz Album Release Country") diff --git a/lib/tags/getInfos::soxi b/lib/tags/getInfos::soxi index 97e6a4f..3725c7e 100644 --- a/lib/tags/getInfos::soxi +++ b/lib/tags/getInfos::soxi @@ -1,5 +1,5 @@ #!/usr/bin/env bash -getInfosSoxi_version='soxi-3' +getInfosSoxi_version='soxi-4' tagreaders+=( "$getInfosSoxi_version" ) getInfos::soxi() { tagreader="$getInfosSoxi_version" @@ -15,6 +15,7 @@ getInfos::soxi() { artist=$(gettag artist) composer=$(gettag composer) disc=$(gettag discnumber) + rating=$(gettag fmps_rating) genre=$(gettag genre) performer=$(gettag performer) releasecountry=$(gettag releasecountry)