我需要从旋律中识别音符,所以我使用了这个演示代码:
#! /usr/bin/env python
import sys
from aubio import source, notes
if len(sys.argv) < 2:
print("Usage: %s <filename> [samplerate]" % sys.argv[0])
sys.exit(1)
filename = sys.argv[1]
downsample = 1
samplerate = 44100 // downsample
if len( sys.argv ) > 2: samplerate = int(sys.argv[2])
win_s = 512 // downsample # fft size
hop_s = 256 // downsample # hop size
s = source(filename, samplerate, hop_s)
samplerate = s.samplerate
tolerance = 0.8
notes_o = notes("default", win_s, hop_s, samplerate)
print("%8s" % "time","[ start","vel","last ]")
# total number of frames read
total_frames = 0
while True:
samples, read = s()
new_note = notes_o(samples)
if (new_note[0] != 0):
note_str = ' '.join(["%.2f" % i for i in new_note])
print("%.6f" % (total_frames/float(samplerate)), new_note)
total_frames += read
if read < hop_s: break
https://github.com/aubio/aubio/blob/master/python/demos/demo_notes.py
旋律中的第一个音符没有正确确定。所以,我制作了C大调音阶,程序打印了我,第一个音符是Am(但它必须是C)。但最有趣的是,其他注释都是正确的。我的输出:
time [ start vel last ]
0.029025 [ 64. 108. -1.]
0.516644 [ 47. 106. 64.]
0.975238 [ 49. 109. 47.]
1.439637 [ 50. 106. 49.]
1.898231 [ 52. 108. 50.]
2.362630 [ 54. 109. 52.]
2.821224 [ 56. 109. 54.]
3.285624 [ 57. 108. 56.]
列表中的第一个数字是 MIDI 音符的代码。我该如何解决?