Gets the number of channels in the WAV file from the header bytes.
@override int getChannels(Uint8List bytes) { final data = ByteData.sublistView(bytes); return data.getUint16( 22, Endian.little, ); }