how to play pcm raw data in java [closed]

心不动则不痛 提交于 2019-11-29 04:09:10

With the javax.sound.sampled package it's pretty much straightforward, but you have to use some boilerplate.

Here's a good tutorial on that: www.wikijava.org/wiki/Play_a_wave_sound_in_Java

Basically you have to create an InputStream from your array and use that to create an AudioInputStream. There you have to specify the format of your audio data.

Then you open an output stream (SourceDataLine) and copy the bytes from the audio stream into that stream.

Check out this article - http://download.oracle.com/javase/tutorial/sound/playing.html.

More specifically, read about SourceDataLine and how to set up AudioFormat.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!