圧縮ビットレート
この値は bit/秒です。なので128000は128kbpsとなります。
// Prints the bitrate of the imported audio files class BitrateLogger extends AssetPostprocessor { function OnPreprocessAudio () { var audioImporter : AudioImporter = assetImporter; Debug.Log(assetPath + " - " + audioImporter.compressionBitrate + " bits/second"); } }