這篇文章主要介紹java實(shí)現(xiàn)切割wav音頻文件的方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、古縣網(wǎng)絡(luò)推廣、小程序定制開(kāi)發(fā)、古縣網(wǎng)絡(luò)營(yíng)銷、古縣企業(yè)策劃、古縣品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供古縣建站搭建服務(wù),24小時(shí)服務(wù)熱線:18982081108,官方網(wǎng)址:www.cdcxhl.com
具體如下:
import it.sauronsoftware.jave.Encoder; import it.sauronsoftware.jave.MultimediaInfo; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.io.IOException; import java.nio.ByteBuffer; /** * wav音頻文件截取工具 * (適用于比特率為128kbps的wav音頻文件,此類音頻文件的頭部信息占用長(zhǎng)度44字節(jié)) * @author lwj * */ public class WavCut { /** * 截取wav音頻文件 * @param sourcepath 源文件地址 * @param targetpath 目標(biāo)文件地址 * @param start 截取開(kāi)始時(shí)間(秒) * @param end 截取結(jié)束時(shí)間(秒) * * return 截取成功返回true,否則返回false */ public static boolean cut(String sourcefile, String targetfile, int start, int end) { try{ if(!sourcefile.toLowerCase().endsWith(".wav") || !targetfile.toLowerCase().endsWith(".wav")){ return false; } File wav = new File(sourcefile); if(!wav.exists()){ return false; } long t1 = getTimeLen(wav); //總時(shí)長(zhǎng)(秒) if(start<0 || end<=0 || start>=t1 || end>t1 || start>=end){ return false; } FileInputStream fis = new FileInputStream(wav); long wavSize = wav.length()-44; //音頻數(shù)據(jù)大?。?4為128kbps比特率wav文件頭長(zhǎng)度) long splitSize = (wavSize/t1)*(end-start); //截取的音頻數(shù)據(jù)大小 long skipSize = (wavSize/t1)*start; //截取時(shí)跳過(guò)的音頻數(shù)據(jù)大小 int splitSizeInt = Integer.parseInt(String.valueOf(splitSize)); int skipSizeInt = Integer.parseInt(String.valueOf(skipSize)); ByteBuffer buf1 = ByteBuffer.allocate(4); //存放文件大小,4代表一個(gè)int占用字節(jié)數(shù) buf1.putInt(splitSizeInt+36); //放入文件長(zhǎng)度信息 byte[] flen = buf1.array(); //代表文件長(zhǎng)度 ByteBuffer buf2 = ByteBuffer.allocate(4); //存放音頻數(shù)據(jù)大小,4代表一個(gè)int占用字節(jié)數(shù) buf2.putInt(splitSizeInt); //放入數(shù)據(jù)長(zhǎng)度信息 byte[] dlen = buf2.array(); //代表數(shù)據(jù)長(zhǎng)度 flen = reverse(flen); //數(shù)組反轉(zhuǎn) dlen = reverse(dlen); byte[] head = new byte[44]; //定義wav頭部信息數(shù)組 fis.read(head, 0, head.length); //讀取源wav文件頭部信息 for(int i=0; i<4; i++){ //4代表一個(gè)int占用字節(jié)數(shù) head[i+4] = flen[i]; //替換原頭部信息里的文件長(zhǎng)度 head[i+40] = dlen[i]; //替換原頭部信息里的數(shù)據(jù)長(zhǎng)度 } byte[] fbyte = new byte[splitSizeInt+head.length]; //存放截取的音頻數(shù)據(jù) for(int i=0; iwave類型的音頻文件切割時(shí)必須注意頭信息,128kbps比特率的wave文件頭信息占用44字節(jié)。
可以把頭信息作為一個(gè)對(duì)象,用ByteBuffer獲取頭信息。
注意:wave文件的頭信息字節(jié)數(shù)組中每個(gè)屬性都進(jìn)行了數(shù)組反轉(zhuǎn)
wave頭信息對(duì)象模型如下:
/** * wave文件頭信息 * @author lwj * */ public class Head { public int riff_id; //4 byte , 'RIFF' public int file_size; //4 byte , 文件長(zhǎng)度(數(shù)據(jù)長(zhǎng)度+36) public int riff_type; //4 byte , 'WAVE' public int fmt_id; //4 byte , 'fmt' public int fmt_size; //4 byte , 數(shù)值為16或18,18則最后又附加信息 public short fmt_tag; //2 byte , 編碼方式,一般為0x0001 public short fmt_channel; //2 byte , 聲道數(shù)目,1--單聲道;2--雙聲道 public int fmt_samplesPerSec;//4 byte , 采樣頻率 public int avgBytesPerSec; //4 byte , 每秒所需字節(jié)數(shù),記錄每秒的數(shù)據(jù)量 public short blockAlign; //2 byte , 數(shù)據(jù)塊對(duì)齊單位(每個(gè)采樣需要的字節(jié)數(shù)) public short bitsPerSample; //2 byte , 每個(gè)采樣需要的bit數(shù) public int data_id; //4 byte , 字符data public int data_size; //4 byte , 數(shù)據(jù)長(zhǎng)度 public int getRiff_id() { return riff_id; } public void setRiff_id(int riff_id) { this.riff_id = riff_id; } public int getFile_size() { return file_size; } public void setFile_size(int file_size) { this.file_size = file_size; } public int getRiff_type() { return riff_type; } public void setRiff_type(int riff_type) { this.riff_type = riff_type; } public int getFmt_id() { return fmt_id; } public void setFmt_id(int fmt_id) { this.fmt_id = fmt_id; } public int getFmt_size() { return fmt_size; } public void setFmt_size(int fmt_size) { this.fmt_size = fmt_size; } public short getFmt_tag() { return fmt_tag; } public void setFmt_tag(short fmt_tag) { this.fmt_tag = fmt_tag; } public short getFmt_channel() { return fmt_channel; } public void setFmt_channel(short fmt_channel) { this.fmt_channel = fmt_channel; } public int getFmt_samplesPerSec() { return fmt_samplesPerSec; } public void setFmt_samplesPerSec(int fmt_samplesPerSec) { this.fmt_samplesPerSec = fmt_samplesPerSec; } public int getAvgBytesPerSec() { return avgBytesPerSec; } public void setAvgBytesPerSec(int avgBytesPerSec) { this.avgBytesPerSec = avgBytesPerSec; } public short getBlockAlign() { return blockAlign; } public void setBlockAlign(short blockAlign) { this.blockAlign = blockAlign; } public short getBitsPerSample() { return bitsPerSample; } public void setBitsPerSample(short bitsPerSample) { this.bitsPerSample = bitsPerSample; } public int getData_id() { return data_id; } public void setData_id(int data_id) { this.data_id = data_id; } public int getData_size() { return data_size; } public void setData_size(int data_size) { this.data_size = data_size; } }以上是“java實(shí)現(xiàn)切割wav音頻文件的方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
網(wǎng)站標(biāo)題:java實(shí)現(xiàn)切割wav音頻文件的方法
文章來(lái)源:http://weahome.cn/article/pspohh.html