码迷,mamicode.com
首页 > 编程语言 > 详细

java合并两段音频成一段 同时播放类似伴奏

时间:2014-04-27 17:39:03      阅读:556      评论:0      收藏:0      [点我收藏+]

标签:java   合并音频   

	/**
	 * 
	 * @param partsPaths 要合成的音频路径数组
	 * @param unitedFilePath 输入合并结果数组
	 */
	public void uniteWavFile(String[] partsPaths, String unitedFilePath) {

			byte byte1[] = getByte(partsPaths[0]);
			byte byte2[] = getByte(partsPaths[1]);

			byte[] out = new byte[byte1.length];
			for (int i = 0; i < byte1.length; i++)
				out[i] = (byte) ((byte1[i] + byte2[i]) >> 1);
			
			try {
				FileOutputStream fos = new FileOutputStream(new File(unitedFilePath));
				fos.write(out);
				fos.close();
			} catch (Exception e) {
				e.printStackTrace();
			}
	}

	private byte[] getByte(String path){
		File f = new File(path);
		InputStream in;
		byte bytes[] = null;
		try {
			in = new FileInputStream(f);
			bytes = new byte[(int) f.length()];
			in.read(bytes);
			in.close();
		} catch (Exception e) {
			e.printStackTrace();
		}
		
		return bytes;
	}
	

java合并两段音频成一段 同时播放类似伴奏,布布扣,bubuko.com

java合并两段音频成一段 同时播放类似伴奏

标签:java   合并音频   

原文地址:http://blog.csdn.net/qq634416025/article/details/24591991

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!