public static void main(String args[])throws IOException { FileInputStream fis1 = new FileInputStream("D:/1.mp4"); FileInputStream fis2 = new FileInputStream("D:/2.mp4"); SequenceInputStream si = new SequenceInputStream(fis1, fis2); FileOutputStream file = new FileOutputStream("D:/3.mp4"); int len = 0; byte b [] = new byte[1024]; while((len=si.read(b))!=-1) { file.write(b, 0, len); } file.close(); si.close(); }利用这段代码能够合并音频文件,但是对视频文件能够合并成功,文件大小差了一个字节,只能播放前一个文件的视频
添加回答
举报
0/150
提交
取消