1
#!/bin/sh
2
PROGDIR=$(dirname $(readlink -f $0))
3
find "$1" -type f| while read fname; do
4
$PROGDIR/extractors/ext-audio-mpeg "$fname"
5
done