本文整理汇总了Python中scikits.audiolab.Sndfile.read方法的典型用法代码示例。如果您正苦于以下问题:Python Sndfile.read方法的具体用法?Python Sndfile.read怎么用?Python Sndfile.read使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类scikits.audiolab.Sndfile
的用法示例。
在下文中一共展示了Sndfile.read方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: open
# 需要导入模块: from scikits.audiolab import Sndfile [as 别名]
# 或者: from scikits.audiolab.Sndfile import read [as 别名]
# np.var(map(lambda x: (mel[x,i] - moy[j]) / np.sqrt(var[j]), times))
features["moy_loc_%s" %j] =\
np.mean(map(lambda x: (mel[x,i] - mel_min) / (mel_max - mel_min), times))
features["var_loc_%s" %j] =\
np.var(map(lambda x: (mel[x,i] - mel_min) / (mel_max - mel_min), times))
try:
text += words[2]+'\t'+str(features)+'\n'
except BaseException, e:
print e
return text
f = open('transcript_test', 'Ur')
text = f.read()
turns = text.split('\n.\n')
turn = turns[1]
turn_formated = turn.split('\n')[1:]
dump = read_turn(mel, moy, var, turn_formated)
#%% Fourth step : read a file
def normalize_signal(path1, path2):
"""attention, retourne directement le tableau du signal."""
f = Sndfile(path1)
n = int(f.nframes)
fs = f.samplerate
nc = f.channels # checker que c'est bien 1
if nc != 1: