MIDO 下的阅读ticks_per_beat
可以通过mid.ticks_per_beat
. 但是,如果我想将ticks_per_beat
(例如 120 或 480)的值保存到一个新的 MIDI 文件中,该怎么做呢?(ps我可以如下设置“拍号”或“节奏”。但是,在我看来,这些值和ticks_per_beat
.)之间没有关系。)
track.append(MetaMessage('time_signature', numerator=4, denominator=4, clocks_per_click=24, notated_32nd_notes_per_beat=8, time=0))
track.append(MetaMessage('set_tempo', tempo=100000, time=0))