作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下代码对我来说工作正常。由于我正在使用 android ,因此我无法使用 audiostream 类。
File correct = new File("data1.mp3");
File file =new File("data.mp3");
correct.createNewFile();
FileInputStream in = new FileInputStream(file);
FileOutputStream out = new FileOutputStream(correct);
byte[] buffer = new byte[in.available()];
for(int i=0;i<1000;i++){
in.read(buffer, 0, 2048);
out.write(buffer, 0, 2048);
}
in.close();
out.close();
现在,如果我运行以下代码,它会给出错误并且无法工作
correct.createNewFile();
FileInputStream in = new FileInputStream(file);
FileOutputStream out = new FileOutputStream(correct);
byte[] buffer = new byte[in.available()];
in.skip(2048);
for(int i=0;i<1000;i++){
in.read(buffer, 0, 2048);
out.write(buffer, 0, 2048);
}
in.close();
out.close();
同样的事情,当我运行此代码时出现错误
correct.createNewFile();
FileInputStream in = new FileInputStream(file);
FileOutputStream out = new FileOutputStream(correct);
byte[] buffer = new byte[in.available()];
for(int i=0;i<1000;i++){
in.read(buffer, 0, 2048);
in.skip(2048);
out.write(buffer, 0, 2048);
}
in.close();
out.close();
所以我的实际问题是如何指定正确的偏移量并将帧复制到新的 mp3 文件中?如何获取框架的尺寸?是否有必要复制一些起始的重要帧?
最佳答案
如果你想在android中提取音频的帧,你必须实现剪辑器。看this
关于java - MP3切割机安卓,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15544323/
我是一名优秀的程序员,十分优秀!