使用 Python 淡化声音的开头
我是一名编程课的学生,我无法让这种淡入淡出发挥作用...现在它只是将长度 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 Python 2.x,请尝试
int
除以较大的int
所得结果为 0。您必须强制执行浮点除法运算。编辑:
您还可以使用
from __future__ import div
使除法运算符像 Python 3 一样使用真正的除法。使用“//”进行楼层除法。If you're using Python 2.x, try
An
int
divided by a largerint
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.