gpt4 book ai didi

c++ - 在 libsndfile 中一次写入一个 channel

转载 作者:行者123 更新时间:2023-12-03 00:12:06 25 4
gpt4 key购买 nike

我正在尝试生成一个正弦波,它以 1 秒的间隔在立体声 wav 文件的左右声道之间切换,但我找不到任何方法来写入一个声道,同时保持另一个声道静音。这是我必须写入一个 channel 的代码:

for (int f = 0; f < numFrames; f++) {
double time = f * duration / numFrames;
buffer[f] = sin(2.0 * pi * time * freq);

这是我发现的一些代码,可用于将两个单声道 wav 文件混合在一起:
short* mixdown = new short[2 * sizeof(short) * 800000];
for (int t = 0; t < 800000 * 2; ++t) {
mixdown[t] = (buffer1[t] + buffer2[t]) / 2;
}

FILE* process2 = _popen("ffmpeg -y -f s16le -acodec pcm_s16le -ar 44100 -ac 2 -i - -f vob -ac 2 D:\\audioMixdown.wav", "wb");
fwrite(mixdown, 2 * sizeof(short) * 800000, 1, process2);

我在 http://www.mega-nerd.com/libsndfile/api.html 上查看了 libsndfile API。但在写入 channel 时找不到任何内容。如果有人知道这样做的最佳方法是什么,我很想听听您的意见。

最佳答案

您可以通过将零样本写入“静音” channel 来实现这一点,例如(使右侧 channel 静音):

for (int f = 0; f < numFrames; f++)
{
double time = f * duration / numFrames;
buffer[f * 2] = sin(2.0 * pi * time * freq);
buffer[f * 2 + 1] = 0;
}

这假设 libsndfile需要交错格式的 channel 数据(我相信这是真的,但不确定)。

关于c++ - 在 libsndfile 中一次写入一个 channel ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61858805/

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