split title into commas

This commit is contained in:
Ryan Gartin 2017-09-26 16:53:16 -04:00
parent 05274634d4
commit d894838b33

View File

@ -48,7 +48,7 @@ save_metadata() {
get_metadata_value() { get_metadata_value() {
local key local key
key="$1" key="$1"
normalize_whitespace "$(grep --max-count=1 --only-matching "${key} *: .*" "$metadata_file" | cut -d : -f 2 | sed -e 's#/##g;s/ (Unabridged)//' | tr -s '[:blank:]' ' ')" normalize_whitespace "$(grep --max-count=1 --only-matching "${key} *: .*" "$metadata_file" | cut -d : -f 2-5 | sed -e 's#/##g;s/ (Unabridged)//' | sed -e 's/:/, /' | sed -e 's/:/, /g' | tr -s '[:blank:]' ' ')"
} }
get_bitrate() { get_bitrate() {