2

我正在做语音片段连接以产生最终语音(测试到语音任务),我想对这些片段应用平滑以使最终结果更自然。这种情况下最好的平滑技术是什么?以及如何使用 NAudio 库应用它

PS:我需要一个示例代码或任何教程来在 wav 上应用任何平滑技术

4

1 回答 1

0

一边淡出一边淡入另一边。尝试线性淡入淡出和对数。

编辑:这是您可能需要执行的步骤:

我们将调用第一个剪辑 C1 和第二个剪辑 C2。调用剪辑 tC1 和 tC2 的长度。你正试图以一种平滑的方式组合它们。首先确定您希望褪色持续多长时间。这可能是几毫秒的问题。也许从 200 毫秒开始。称之为 tFade。

1. Do the fade-out on the end of C1.
2. Do the fade-in on the start of C2.
3. Pad the end of C1 with tC2-tFade of silence
4. Pad the start of C2 with tC1-tFade of silence
5. Add the padded clips together (at this point, they are the same length: tC1+tC2-tFade)
于 2011-11-01T15:14:05.057 回答