New issue 114 by chunzhan...@gmail.com: Mingus tutorial 1
http://code.google.com/p/mingus/issues/detail?id=114
I enter the code in Python 2.6 as following
from mingus.midi import fluidsynth
fluidsynth.init("AJH_Piano.sf2", "alsa")
fluidsynth.play_Note(Note("C-5"))
when I run it, I got error as following:
Traceback (most recent call last):
File "/home/chunzhang/Projects/Python/Mingus/PlayNote.py", line 3, in
<module>
fluidsynth.play_Note(Note("C-5"))
NameError: name 'Note' is not defined
I am very new the Python and Mingus, please help.