this is still 1.1.0 I promise

This commit is contained in:
yoshiyoshyosh 2022-09-25 11:29:16 -04:00 committed by GitHub
parent 38e4c85fe4
commit 07dccba6b5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -77,10 +77,10 @@ process_file() {
# now test if keepkeys or whatever was used, set exported tags
if [ "$KEEPKEYS" ]; then
tags="$(printf '%s' "$tags" | grep -E "^$KEEPKEYS")"
tags="$(printf '%s' "$tags" | grep -i -E "^$KEEPKEYS")"
elif [ "$REMOVEKEYS" ]; then
[ "$REMOVEKEYS" = "ALL" ] && REMOVEKEYS=''
tags="$(printf '%s' "$tags" | grep -v -E "^$REMOVEKEYS")"
tags="$(printf '%s' "$tags" | grep -v -i -E "^$REMOVEKEYS")"
fi
# export pic if we're keeping it
@ -138,8 +138,8 @@ if encoding to mp3, the only metadata that will be kept is the following:
OVERRIDES -b
-k <KEYS> keep specified flac metadata KEYS in output file
keys can be checked with metaflac --export-tags-to=- FILE
option argument is a PIPE-separated list of UPPERCASE keys to keep
(i.e. -m 'ARTIST|TITLE|ALBUMARTIST|ALBUM|DATE')
option argument is a PIPE-separated list of keys to keep, case-insensitive
(i.e. -k 'artist|title|albumartist|album|date')
if both -k and -r are not present, all keys are kept.
-r <KEYS> remove specified flac metadata KEYS in output file
cannot be used with -k