2021-09-20 19:34:00 +00:00
|
|
|
#!/bin/sh
|
2022-01-31 10:16:04 +00:00
|
|
|
# View song metadata using ffprobe
|
|
|
|
# Accepts filenames from args or stdin (one file per line)
|
2022-05-12 09:32:39 +00:00
|
|
|
# TODO only print header when interactive
|
2022-01-31 10:16:04 +00:00
|
|
|
if test "$#" -eq 0
|
|
|
|
then cat
|
|
|
|
else printf '%s\n' "$@"
|
|
|
|
fi | while read f; do
|
2021-09-20 19:34:00 +00:00
|
|
|
highlight "$f"
|
2022-05-12 09:32:39 +00:00
|
|
|
find "$f" -type f -exec ffprobe -loglevel warning -print_format default=noprint_wrappers=1 -show_format -pretty {} \;
|
2021-09-20 19:34:00 +00:00
|
|
|
done | less
|