我正在尝试使用 SOX C++ API 处理内存中的音频文件,但我一开始就卡住了。目标是从磁盘加载音频文件,在内存中应用一些效果(速度/增益调整)。这是我开始使用的代码,但是在创建输出流时收到一个奇怪的错误:
formats: can't open output file `': No such file or directory
这里可能是什么问题?我在 Mac 上测试它。这是代码:
#include <iostream>
#include <sox.h>
#include <assert.h>
int main() {
sox_format_t * in, *out;
sox_effect_t * e;
sox_init();
in = sox_open_read("/path/to/file.wav", NULL, NULL, NULL);
sox_format_t *out_format = (sox_format_t *)malloc(sizeof(sox_format_t));
memcpy(out_format, in, sizeof(sox_format_t));
char * buffer;
size_t buffer_size;
out = sox_open_memstream_write(&buffer, &buffer_size, &in->signal, NULL, "sox", NULL);
//chain = sox_create_effects_chain(&in->encoding, &out->encoding);
//e = sox_create_effect(sox_find_effect("input"));
return 0;
}