- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
好的,我希望我不要搞砸了,我已经寻找了一些答案,但找不到任何东西。我正在尝试在 3D 模式下使用 FMOD 声音播放器在 openframeworks 中制作一个简单的采样器。我可以使单个实例正常工作(使用 libsndfilerecorder 录制一个新文件,然后播放它并在环绕中移动它。
但是,我想要 8 层循环音频,我可以在现场表演中一次录制和替换一层。一旦我有超过 1 层,我就会遇到很多问题。
我的问题的第一部分与 FMOD 3D 模式有关,它是相对于听者的,所以我必须为每个声音定义听者的位置(我更喜欢头部相对模式,但我根本无法做到这一点。再次当我使用单个播放器但使用多个播放器时,这工作正常,只有我更新的最后一个监听器实际工作。
我遇到的主要问题是,当我使用多个播放器时,我会失真,并且在我的新录音中经常混合其他当前正在播放的声音(即使麦克风听不到它们)。是否与 libsndfilerecorder 和 FMOD 不兼容?
在这里我初始化播放器
for (int i=0; i<CHANNEL_COUNT; i++) {
lvelocity[i].set(1, 1, 1);
lup[i].set(0, 1, 0);
lforward[i].set(0, 0, 1);
lposition[i].set(0, 0, 0);
sposition[i].set(3, 3, 2);
svelocity[i].set(1, 1, 1);
//player[1].initializeFmod();
//player[i].loadSound( "1.wav" );
player[i].setVolume(0.75);
player[i].setMultiPlay(true);
player[i].play();
setupHold[i]==false;
recording[i]=false;
channelHasFile[i]=false;
settingOsc[i]=false;
}
if (recording[recordingId]==false) {
setupHold[recordingId]=true; //this stops the position updating
cout<<"Start recording Channel " + ofToString(recordingId+1)+" setup hold is true \n";
pt=getDateName() +".wav";
player[recordingId].stop();
player[recordingId].unloadSound();
audioRecorder.setup(pt);
audioRecorder.setFormat(SF_FORMAT_WAV | SF_FORMAT_PCM_16);
recording[recordingId]=true; //this starts the libSndFIleRecorder
}
else {
cout<<"Channel" + ofToString(recordingId+1)+" is already recording \n";
}
void fmodApp::recordingEnd( int recordingId ){
if (recording[recordingId]=true) {
recording[recordingId]=false;
cout<<"Stop recording" + ofToString(recordingId+1)+" \n";
audioRecorder.finalize();
audioRecorder.close();
player[recordingId].loadSound(pt);
setupHold[recordingId]=false;
channelHasFile[recordingId]=true;
cout<< "File recorded channel " + ofToString(recordingId+1) + " file is called " + pt + "\n";
}
else {
cout << "Sorry track" + ofToString(recordingId+1) + "is not recording";
}
最佳答案
为了处理失真,我认为您需要在播放时降低每个 channel 的音量,尝试将音量设置为最大音量的 1/8。没有任何削波,所以如果声音的总和 > 1.0f 你会削波并且听起来很糟糕。
处理录音时的串扰:我猜你有一些输出反馈,即输出声音被反馈到输入 channel ,可能是由操作系统。如果您运行另一个发出声音的应用程序,您是否也会在录音中得到它?如果是这样,那可能是你的问题。
如果它适用于一个 channel ,请尝试仅使用 2 个,而不是直接跳到 8 个 channel 。
一般来说,我会尝试将播放/录制逻辑和 soundPlayer/recorder 抽象到一个单独的类中。你有几个 bool 值,使用 >1 bool 值很容易出错。有什么方法可以用枚举或整数状态变量替换 bool 值?
关于audio - FMOD 环绕声开放框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10984145/
我看到的所有地方都表明 5.1/surround 支持应该在现代网络音频 API 中,但我没有做任何事情让它在 Firefox 40 或 Chrome 上工作(不确定 Chrome 版本,但它应该是最
我是一名优秀的程序员,十分优秀!