7 lines
137 B
Plaintext
7 lines
137 B
Plaintext
|
#!/bin/sh
|
||
|
# Extract song metadata with ffprobe
|
||
|
while read f; do
|
||
|
highlight "$f"
|
||
|
ffprobe "$f" 2>&1 | grep -A90 'Metadata:'
|
||
|
done | less
|