Tiny Python CLI to display the bit depth of a list of WAVs. Pretty bad "by design", I'm only using this to quickly verify promotional files I get from my secret DJing career.
$ python bitdepth.py file1.wav file2.wav
file1.wav: 16-bit
file2.wav: 24-bit
Pass in a space-delimited list of files. Globs work too. If nothing is specified, bitdepth
lists the bit depth of all WAV files in the current working directory.