所以我试图通过将其分解为样本并将这些样本存储在数组中来操纵java中的声音文件。然后我循环遍历更改每个样本的数组。我意识到java中已经有了一个回声滤波器,但是我需要通过在整个声音片段中以不同的间隔重复声音来设计我自己的音量,并减小音量。我目前有一种控制音量的方法,但是当要让声音在当前声音文件的特定延迟时开始重复时我会感到难过。这就是我到目前为止所做的:
public void echoEffect(int delay){
SoundSample[] sampleArray = this.getSamples(); // get array
SoundSample sample = null; // current sample obj
int value = 0; // value at sample
// loop through SoundSample objects
for(int i = 0, index = 0; index < sampleArray.length; i++,index++)
{
sample = sampleArray[index]; // get current obj
value = sample.getValue(); // get the value
sample.setValue(value*2); // set the value
}
}
我认为我需要做的是将方法从void更改为Sound并返回延迟的声音文件。可能会返回类似值+值[i +延迟] *(某些分数来减少声音)
新更新而不是发布:
无论如何这是我到目前为止我似乎无法使代码正常工作,我知道我很接近,但我需要在声音文件上输出回声效果的方法。以下是我目前的观点:
public void echo(int delay){
SoundSample[] sampleArray = this.getSamples(); // get array
//Sound target = new Sound(sampleArray.length);
SoundSample sampleDelay = null;
SoundSample sample = null; // current sample obj
int value = 0; // value at sample
int index = 0;
double value2 = 0;
// loop through SoundSample objects
while (index < sampleArray.length)
{
sample = sampleArray[index]; // get current obj
value = sample.getValue(); // get the value
sampleDelay = (sampleArray[delay-index]);
value2 = (sampleDelay.getValue()*.6);
sample.setValue(value + (int) value2); // set the value
index++; // increment index
}
}
让我知道你们认为所有这些似乎都是由于某种原因改变幅度...... 发布SSCCE的问题在于,这是使用一些我不相信的java常规类,因此我只是在找人帮助逻辑。我试图循环播放声音文件的样本,然后将延迟点的值设置为声音的开头,但音量较小。 IDK,如果我正在解释这一点,但我希望这将是一个简单的解决方案。
答案 0 :(得分:1)
而不是
sampleDelay = (sampleArray[delay-index]);
你想要
sampleDelay = (sampleArray[index-delay]);
答案 1 :(得分:0)
你确定它不是以下吗?
sampleDelay = (sampleArray[index*delay]);