- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 for 循环中的 try/catch block 不断地将 WAV 文件添加在一起。我有一个现有的代码片段,可以创建一个组合两个现有文件的新文件,我正在尝试将其转换为可以覆盖现有文件并使用其内容的文件。
然而,到目前为止,这是唯一发生的事情。给定一个大小为 n 的预先存在的 WAV file[] 数组,最后一个条目 (file[n-1]) 是唯一存储的条目到总和文件x。我希望将数组中的所有文件一起添加到 x 中。
我的基本方法有两部分:将前两个文件添加在一起来初始化x(x = file[0] + file[1]),然后添加所有后续文件到 x (x+=file[2]+...+file[n-1])。第一部分工作正常;我可以初始化一个新的 WAV 文件,它可以轻松地组合前两个文件。当我循环时我遇到了问题。我似乎无法操纵文件写入,使其 x 不只是成为 file[n-1] 。
下面的代码可以获取两个文件并将它们添加到一个新文件中:
try {
AudioInputStream clip1 = AudioSystem.getAudioInputStream(new File("filepath"));
AudioInputStream clip2 = AudioSystem.getAudioInputStream(new File("filepath"));
AudioInputStream appendedFiles = new AudioInputStream(
new SequenceInputStream(clip1, clip2),
clip1.getFormat(),
clip1.getFrameLength() + clip2.getFrameLength());
AudioSystem.write(appendedFiles, AudioFileFormat.Type.WAVE,
new File("newFileFilepath"));
} catch (Exception e) { e.printStackTrace(); }
这是我试图解决问题的后半部分(循环附加)的方法:
// filepaths in the array need to be initialized, these are simply placeholders.
String[] filePathClips = {"filepath1", "filepath2", "filepath3", "filepath4"};
// Subsequent appends to the first and second clips, if necessary.
for (int n = 2; n < filePathClips.length; n++) {
try {
String stitchAppend = filePathClips[n];
// clip1 represents the stored and preexisting, previously combined files.
AudioInputStream clip1 = AudioSystem.getAudioInputStream(new File("combinedFiles"));
// clip2 is the upcoming file to be added to clip1.
AudioInputStream clip2 = AudioSystem.getAudioInputStream(new File(stitchAppend));
// appendedFiles is the AudioInputStream of the combined files.
AudioInputStream appendedFiles = new AudioInputStream(
new SequenceInputStream(clip1, clip2),
clip1.getFormat(),
clip1.getFrameLength() + clip2.getFrameLength());
// This line generates the new file, which should just write over the
// file of the same name (in this case, "combinedFiles").
AudioSystem.write(appendedFiles, AudioFileFormat.Type.WAVE,
new File("combinedFiles"));
}
catch (Exception e) { e.printStackTrace(); }
}
我希望写入的文件是所有文件的总和,但结果文件只是循环中添加的最后一个文件。任何对 Java 声音库或 WAV 文件管理有丰富经验的人都可能能够提供帮助,如果您这样做,我将非常感激!感谢您仔细阅读我的问题,并感谢我已经阅读过的无数答案,这些答案使我获得了学位。
最佳答案
所以,我想通了,现在回想起来,这似乎是非常明显的。基本上,每次覆盖文件都会导致一些问题,正如 jakub_d 指出的那样。解决这个问题的方法是更新 AudioInputStream 附加文件。结果代码是:
try {
// filepaths in the array need to be initialized, these are simply placeholders.
String[] filePathClips = {"filepath1", "filepath2", "filepath3", "filepath4"};
// The first two clips are combined to created the appendedFiles AIS.
AudioInputStream clip1 = AudioSystem.getAudioInputStream(new File(filePathClips[0]));
AudioInputStream clip2 = AudioSystem.getAudioInputStream(new File(filePathClips[1]));
AudioInputStream appendedFiles = new AudioInputStream(
new SequenceInputStream(clip1, clip2),
clip1.getFormat(),
clip1.getFrameLength() + clip2.getFrameLength());
// Subsequent appends to the first and second clips, if necessary.
for (int n = 2; n < filePathClips.length; n++) {
String stitchAppend = filePathClips[n];
// clip2 is the upcoming file to be added to appendedFiles.
clip2 = AudioSystem.getAudioInputStream(new File(stitchAppend));
// appendedFiles is the AudioInputStream of the combined files.
appendedFiles = new AudioInputStream(
new SequenceInputStream(appendedFiles, clip2),
appendedFiles.getFormat(),
appendedFiles.getFrameLength() + clip2.getFrameLength());
}
// This line generates the new file.
AudioSystem.write(appendedFiles, AudioFileFormat.Type.WAVE,
new File("combinedFilesFilepath"));
} catch (Exception e) { e.printStackTrace(); }
关于java - 如何将 WAV 文件 y 附加到现有 WAV 文件 x, s.t. x + = y?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56548696/
我对这个错误很困惑: Cannot implicitly convert type 'System.Func [c:\Program Files (x86)\Reference Assemblies\
考虑这段代码: pub trait Hello { fn hello(&self); } impl Hello for Any { fn hello(&self) {
问题很简单。是否可以构造这样一个类型 T,对于它下面的两个变量声明会产生不同的结果? T t1 = {}; T t2{}; 我已经研究 cppreference 和标准一个多小时了,我了解以下内容:
Intellij idea 给我这个错误:“Compare (T, T) in Comparator cannot be applied to (T, T)” 对于以下代码: public class
任何人都可以告诉我 : n\t\t\t\t\n\t\t\t 在以下来自和 dwr 服务的响应中的含义和用途是什么. \r\n\t\t\t \r\n\t\t\t
让 T 成为一个 C++ 类。 下面三个指令在行为上有什么区别吗? T a; T a(); T a = T(); T 为不带参数的构造函数提供了显式定义这一事实是否对问题有任何改变? 后续问题:如果
Rust中的智能指针是什么 智能指针(smart pointers)是一类数据结构,是拥有数据所有权和额外功能的指针。是指针的进一步发展 指针(pointer)是一个包含内存地
比如我有一个 vector vector > v={{true,1},{true,2},{false,3},{false,4},{false,5},{true,6},{false,7},{true,8
我有一个来自 .xls 电子表格的数据框,我打印了 print(df.columns.values) 列,输出包含一个名为:Poll Responses\n\t\t\t\t\t。 我查看了 Excel
This question already has answers here: What are good reasons for choosing invariance in an API like
指针类型作为类型前缀与在类型前加斜杠作为后缀有什么区别。斜线到底是什么意思? 最佳答案 语法 T/~ 和 T/& 基本上已被弃用(我什至不确定编译器是否仍然接受它)。在向新向量方案过渡的初始阶段,[T
我正在尝试找到一种方法来获取模板参数的基类。 考虑以下类: template class Foo { public: Foo(){}; ~Foo(){};
这是一个让我感到困惑的小问题。我不知道如何描述它,所以只看下面的代码: struct B { B() {} B(B&) { std::cout ::value #include
为什么有 T::T(T&) 而 T::T(const T&) 更适合 copy ? (大概是用来实现move语义的???) 原始描述(被melpomene证明是错误的): 在C++11中,支持了一种新
在 Java 7 中使用 eclipse 4.2 并尝试实现 List 接口(interface)的以下方法时,我收到了警告。 public T[] toArray(T[] a) { ret
假设有三个函数: def foo[T](a:T, b:T): T = a def test1 = foo(1, "2") def test2 = foo(List(), ListBuffer()) 虽
我对柯里化(Currying)和非柯里化(Currying)泛型函数之间类型检查的差异有点困惑: scala> def x[T](a: T, b: T) = (a == b) x: [T](a: T,
考虑一个类A,我如何编写一个具有与相同行为的模板 A& pretty(A& x) { /* make x pretty */ return x; } A pretty(A&& x) {
Eclipse 表示由于泛型类型橡皮擦,类型参数不允许使用 instanceof 操作。 我同意在运行时不会保留任何类型信息。但是请考虑以下类的通用声明: class SomeClass{ T
在 C++14 中: 对于任何整数或枚举类型 T 以及对于任何表达式 expr: 有没有区别: struct S { T t { expr }; }; 和 struct S { T t = { exp
我是一名优秀的程序员,十分优秀!