使用 Python 淡化声音的开头

发布于 2024-12-07 06:21:26 字数 167 浏览 0 评论 0原文

我是一名编程课的学生,我无法让这种淡入淡出发挥作用...现在它只是将长度 fade_length 的前几个样本静音...任何人都可以告诉我为什么这样做,这样我就可以找到解决方法吗?

<code erased>

没有直接答案的帮助会很棒。谢谢

I'm a student in a programming class and I just can't get this fading in to work... Right now it's just muting the first few samples of length fade_length... can anyone tell me why it does so so I can find out a way to fix it?

<code erased>

Help without direct answers would be great. Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月打碎记忆 2024-12-14 06:21:26

如果您使用的是 Python 2.x,请尝试

factor = 1.0 * index / fade_length

int 除以较大的 int 所得结果为 0。您必须强制执行浮点除法运算。

编辑:

您还可以使用 from __future__ import div 使除法运算符像 Python 3 一样使用真正的除法。使用“//”进行楼层除法。

If you're using Python 2.x, try

factor = 1.0 * index / fade_length

An int divided by a larger int is 0. You have to coerce the operation to floating point division.

Edit:

You can also use from __future__ import division to make the division operator use true division like Python 3. Use '//' for floor division.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文