91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 2KB
    文件類型: .zip
    金幣: 2
    下載: 0 次
    發(fā)布日期: 2021-06-07
  • 語言: Java
  • 標(biāo)簽: PCM轉(zhuǎn)WAV??

資源簡介

音頻文件PCM轉(zhuǎn)WAV格式轉(zhuǎn)換類 Utils類 直接可以使用有現(xiàn)成DEMO。感謝評論 音頻文件PCM轉(zhuǎn)WAV格式轉(zhuǎn)換類 Utils類

資源截圖

代碼片段和文件信息

package?pcmwav;

import?java.io.FileInputStream;
import?java.io.FileOutputStream;

public?class?PcmToWav?{
/**
?*?轉(zhuǎn)換音頻文件
?*?
?*?@param?src
?*????????????需要轉(zhuǎn)換的pcm音頻路徑
?*?@param?target
?*????????????保存轉(zhuǎn)換后wav格式的音頻路徑
?*?@throws?Exception
?*/
public?static?void?convertAudioFiles(String?src?String?target)?throws?Exception?{
FileInputStream?fis?=?new?FileInputStream(src);
FileOutputStream?fos?=?new?FileOutputStream(target);

//?計(jì)算長度
byte[]?buf?=?new?byte[1024?*?4];
int?size?=?fis.read(buf);
int?PCMSize?=?0;
while?(size?!=?-1)?{
PCMSize?+=?size;
size?=?fis.read(buf);
}
fis.close();

//?填入?yún)?shù),比特率等等。這里用的是16位單聲道?8000?hz
WaveHeader?header?=?new?WaveHeader();
//?長度字段?=?內(nèi)容的大小(PCMSize)?+?頭部字段的大小(不包括前面4字節(jié)的標(biāo)識符RIFF以及fileLength本身的4字節(jié))
header.fileLength?=?PCMSize?+?(44?-?8);
header.FmtHdrLeth?=?16;
header.BitsPerSample?=?16;
header.Channels?=?2;
header.FormatTag?=?0x0001;
header.SamplesPerSec?=?8000;
header.BlockAlign?=?(short)?(header.Channels?*?header.BitsPerSample?/?8);
header.AvgBytesPerSec?=?header.BlockAlign?*?header.SamplesPerSec;
header.DataHdrLeth?=?PCMSize;

byte[]?h?=?header.getHeader();

assert?h.length?==?44;?//?WAV標(biāo)準(zhǔn),頭部應(yīng)該是44字節(jié)
//?write?header
fos.write(h?0?h.length);
//?write?data?stream
fis?=?new?FileInputStream(src);
size?=?fis.read(buf);
while?(size?!=?-1)?{
fos.write(buf?0?size);
size?=?fis.read(buf);
}
fis.close();
fos.close();
System.out.println(“Convert?OK!“);
}

//?測試方法
public?static?void?main(String[]?agrs)?throws?Exception?{
convertAudioFiles(“C:\\Users\\90942\\Desktop\\2\\processed.pcm“?“C:\\Users\\90942\\Desktop\\2\\pro.wav“);
}

}

?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2018-05-11?17:16??pcmwav\
?????文件????????1828??2018-05-07?10:17??pcmwav\PcmToWav.java
?????文件????????1816??2018-05-04?20:16??pcmwav\WaveHeader.java

評論

共有 條評論

相關(guān)資源