私はこのようなメモの配列を持っています
const notes = [{note: 'C4', duration: '8n'}, {note: 'D4', duration: '4n'}, {note: 'C4', duration: '2n'}, {note: '', duration: '8n'}] //last element stands for a pause
この配列に基づいてメロディーを演奏するにはどうすればよいですか? また、メロディーを保存するためのより良い方法はありますか?
それとも、これに別のライブラリを使用する必要がありますか?
ありがとうございました!