2018-03-26 23:34:44 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-03-28 16:48:49 +00:00
|
|
|
# doc print_meta_flac {
|
2018-03-26 23:34:44 +00:00
|
|
|
#
|
|
|
|
# DESCRIPTION
|
2018-03-28 16:48:49 +00:00
|
|
|
# print_meta_flac - Prints metadata of remote flac in FIELD=VALUE; format.
|
2018-03-26 23:34:44 +00:00
|
|
|
#
|
|
|
|
# USAGE
|
2018-03-28 16:48:49 +00:00
|
|
|
# print_meta_flac </path/to/flac>
|
2018-03-26 23:34:44 +00:00
|
|
|
#
|
|
|
|
# }
|
|
|
|
|
2018-03-28 16:48:49 +00:00
|
|
|
print_meta_flac() {
|
2018-03-28 13:52:57 +00:00
|
|
|
local FILE="${1}"
|
|
|
|
|
|
|
|
if [[ -f ${FILE} ]]; then
|
2018-03-28 15:07:17 +00:00
|
|
|
awk 'BEGIN{FS=": ";ORS=";"}{if($1 ~ /comment\[/){print $2}}' <<< $(metaflac --list --block-type=VORBIS_COMMENT "${FILE}") | sed 's|.$||'
|
2018-03-28 13:52:57 +00:00
|
|
|
fi
|
|
|
|
}
|