11 lines
290 B
Bash
Executable File
11 lines
290 B
Bash
Executable File
#!/bin/sh
|
|
# View song metadata using ffprobe
|
|
# Accepts filenames from args or stdin (one file per line)
|
|
if test "$#" -eq 0
|
|
then cat
|
|
else printf '%s\n' "$@"
|
|
fi | while read f; do
|
|
highlight "$f"
|
|
find "$f" -type f -exec ffprobe -hide_banner {} 2>&1 \; #| grep -A90 'Metadata:'
|
|
done | less
|