私は、音を録音し、音の周波数または強度を表す値を画面に表示する必要があるアプリを Android で開発しています。
記録のために、私はこのコードを使用します:
mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
mRecorder.setOutputFile(name);
mRecorder.prepare();
mRecorder.start();
次に、最初に、保存されたファイルを次のようにバイトに変換しようとしました:
DataInputStream dis1 = new DataInputStream ( new FileInputStream (name));
byte[] datainBytes1 = new byte[dis1.available()];
dis1.readFully(datainBytes1);
dis1.close();
しかし、描画メソッドを使用して、そのバイト値を short または float に変換して表示したいと考えています。
canvas.drawLine(xini,yini,xfinal,yfinal,paint)
音声ファイルを描画可能な短い値に変換する別の方法を教えてください。
ご助力ありがとうございます!!