Chinaunix首页 | 论坛 | 博客
  • 博客访问: 258080
  • 博文数量: 56
  • 博客积分: 1264
  • 博客等级: 中尉
  • 技术积分: 491
  • 用 户 组: 普通用户
  • 注册时间: 2011-07-19 15:16
文章分类

全部博文(56)

文章存档

2012年(10)

2011年(46)

分类: 嵌入式

2011-09-19 11:21:28

Java代码 复制代码 收藏代码
  1. import java.io.File;   
  2. import java.io.FileInputStream;   
  3. import java.io.FileNotFoundException;   
  4. import java.io.IOException;   
  5. import java.io.InputStream;   
  6.   
  7. import javax.sound.sampled.AudioFormat;   
  8. import javax.sound.sampled.AudioSystem;   
  9. import javax.sound.sampled.DataLine;   
  10. import javax.sound.sampled.LineUnavailableException;   
  11. import javax.sound.sampled.SourceDataLine;   
  12.   
  13. public class test {   
  14.   
  15.     /**  
  16.      * @param args  
  17.      */  
  18.     public static void main(String[] args) {   
  19.         // TODO Auto-generated method stub   
  20.   
  21.         try {   
  22.             File file = new File("OutPcm.pcm");   
  23.             System.out.println(file.length());   
  24.             int offset = 0;   
  25.             int bufferSize = Integer.valueOf(String.valueOf(file.length())) ;   
  26.             byte[] audioData = new byte[bufferSize];   
  27.             InputStream in = new FileInputStream(file);   
  28.             in.read(audioData);   
  29.   
  30.                
  31.                
  32.             float sampleRate = 16000;   
  33.             int sampleSizeInBits = 16;   
  34.             int channels = 1;   
  35.             boolean signed = true;   
  36.             boolean bigEndian = false;   
  37.             // sampleRate - 每秒的样本数   
  38.             // sampleSizeInBits - 每个样本中的位数   
  39.             // channels - 声道数(单声道 1 个,立体声 2 个)   
  40.             // signed - 指示数据是有符号的,还是无符号的   
  41.             // bigEndian - 指示是否以 big-endian 字节顺序存储单个样本中的数据(false 意味着   
  42.             // little-endian)。   
  43.             AudioFormat af = new AudioFormat(sampleRate, sampleSizeInBits, channels, signed, bigEndian);   
  44.             SourceDataLine.Info info = new DataLine.Info(SourceDataLine.class, af, bufferSize);   
  45.             SourceDataLine sdl = (SourceDataLine) AudioSystem.getLine(info);   
  46.             sdl.open(af);   
  47.             sdl.start();   
  48.             while (offset < audioData.length) {   
  49.                 offset += sdl.write(audioData, offset, bufferSize);   
  50.             }   
  51.         } catch (LineUnavailableException e) {   
  52.             // TODO Auto-generated catch block   
  53.             e.printStackTrace();   
  54.         } catch (FileNotFoundException e) {   
  55.             // TODO Auto-generated catch block   
  56.             e.printStackTrace();   
  57.         } catch (IOException e) {   
  58.             // TODO Auto-generated catch block   
  59.             e.printStackTrace();   
  60.         }   
  61.   
  62.     }   
  63.   
  64. }  
阅读(2292) | 评论(0) | 转发(0) |
0

上一篇:环形缓冲器Java实现

下一篇:Jni函数调用

给主人留下些什么吧!~~