白小花同学 2014-09-30 08:09
浏览 4062

如何播放科大讯飞录音后的pcm?

用这个方法播放的话全是噪音,因为播放要在listview的item中进行,而且要有图片的变换,所以用thread效果不好。
public void play() {

    // Get the file we want to playback./storage/emulated/0/oral/pcm/14091714280386951041300.pcm
    File file = new File("/storage/emulated/0/oral/pcm/14091714280386951041300.pcm");
    // 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 musicLength = (int)(file.length()/2);
    short[] music = new short[musicLength];
    try {
        // Create a DataInputStream to read the audio data back from the saved file.
        InputStream is = new FileInputStream(file);
        BufferedInputStream bis = new BufferedInputStream(is);
        DataInputStream dis = new DataInputStream(bis);

        // Read the file into the music array.
        int i = 0;
        while (dis.available() > 0) {
            music[i] = dis.readShort();
            i++;
        }

        // Close the input streams.
        dis.close();    

        // Create a new AudioTrack object using the same parameters as the AudioRecord
        // object used to create the file.
        AudioTrack audioTrack = new AudioTrack(AudioManager.STREAM_MUSIC,
                44100,
                AudioFormat.CHANNEL_CONFIGURATION_MONO,
                AudioFormat.ENCODING_PCM_16BIT,
                musicLength*2,
                AudioTrack.MODE_STREAM);
        // Start playback
        audioTrack.play();
        // Write the music buffer to the AudioTrack object
        audioTrack.write(music, 0, musicLength);
        audioTrack.stop() ;

    } catch (Throwable t) {
        Log.e("AudioTrack","Playback Failed");
    }
}
  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 这是哪个作者做的宝宝起名网站
    • ¥60 版本过低apk如何修改可以兼容新的安卓系统
    • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
    • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
    • ¥50 有数据,怎么用matlab求全要素生产率
    • ¥15 TI的insta-spin例程
    • ¥15 完成下列问题完成下列问题
    • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
    • ¥15 YoloV5 第三方库的版本对照问题
    • ¥15 请完成下列相关问题!