gpt4 book ai didi

java - 如何将 WAV 文件 y 附加到现有 WAV 文件 x, s.t. x + = y?

转载 作者:行者123 更新时间:2023-12-02 04:36:43 24 4
gpt4 key购买 nike

我正在尝试使用 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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com