Get bitrate of all MP3 files in a directory (soxi)
for f in *.mp3; do echo "$f: $(soxi -B "$f")"; done
Loops through all MP3 files in the current directory and displays their average bitrate using the soxi command.
for f in *.mp3; do echo "$f: $(soxi -B "$f")"; done
Loops through all MP3 files in the current directory and displays their average bitrate using the soxi command.