AudioTrack
クラスを使用して Android で PCM ファイルを再生しようとしています。ファイルを問題なく再生できますが、いつ再生が終了したかを確実に判断できません。AudioTrack.getPlayState
再生が終了していないときに再生が停止したと表示されます。で同じ問題が発生しておりAudioTrack.setNotificationMarkerPosition
、マーカーがファイルの最後に設定されていることは確かです (ただし、正しく行っているかどうかは完全にはわかりません)。同様に、getPlaybackHeadPosition
がファイルの最後に達し、インクリメントが停止すると、再生が続行されます。誰でも助けることができますか?
質問する
9096 次
2 に答える
16
audioTrack.setNotificationMarkerPosition(audioLength) と audioTrack.setPlaybackPositionUpdateListener を使用するとうまくいくことがわかりました。次のコードを参照してください。
// Get the length of the audio stored in the file (16 bit so 2 bytes per short)
// and create a short array to store the recorded audio.
int audioLength = (int) (pcmFile.length() / 2);
short[] audioData = new short[audioLength];
DataInputStream dis = null;
try {
// Create a DataInputStream to read the audio data back from the saved file.
InputStream is = new FileInputStream(pcmFile);
BufferedInputStream bis = new BufferedInputStream(is);
dis = new DataInputStream(bis);
// Read the file into the music array.
int i = 0;
while (dis.available() > 0) {
audioData[i] = dis.readShort();
i++;
}
// Create a new AudioTrack using the same parameters as the AudioRecord.
audioTrack = new AudioTrack(AudioManager.STREAM_MUSIC, RECORDER_SAMPLE_RATE, RECORDER_CHANNEL_OUT,
RECORDER_AUDIO_ENCODING, audioLength, AudioTrack.MODE_STREAM);
audioTrack.setNotificationMarkerPosition(audioLength);
audioTrack.setPlaybackPositionUpdateListener(new OnPlaybackPositionUpdateListener() {
@Override
public void onPeriodicNotification(AudioTrack track) {
// nothing to do
}
@Override
public void onMarkerReached(AudioTrack track) {
Log.d(LOG_TAG, "Audio track end of file reached...");
messageHandler.sendMessage(messageHandler.obtainMessage(PLAYBACK_END_REACHED));
}
});
// Start playback
audioTrack.play();
// Write the music buffer to the AudioTrack object
audioTrack.write(audioData, 0, audioLength);
} catch (Exception e) {
Log.e(LOG_TAG, "Error playing audio.", e);
} finally {
if (dis != null) {
try {
dis.close();
} catch (IOException e) {
// don't care
}
}
}
于 2011-07-11T19:18:23.480 に答える
3
これは私のために働きます:
do{ // Montior playback to find when done
x = audioTrack.getPlaybackHeadPosition();
}while (x< pcmFile.length() / 2);
于 2012-11-27T02:10:13.283 に答える