本文整理匯總了Python中solfege.mpd.track.Track.set_bpm方法的典型用法代碼示例。如果您正苦於以下問題:Python Track.set_bpm方法的具體用法?Python Track.set_bpm怎麽用?Python Track.set_bpm使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類solfege.mpd.track.Track
的用法示例。
在下文中一共展示了Track.set_bpm方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_set_bpm
# 需要導入模塊: from solfege.mpd.track import Track [as 別名]
# 或者: from solfege.mpd.track.Track import set_bpm [as 別名]
def test_set_bpm(self):
t = Track()
t.set_bpm(120)
t.note(4, 50)
self.assertEqual(
MidiEventStream(t).str_repr(1),
"t120/4 p0:0 v0:100 n0:50 d1/4 o50")
示例2: test_set_bpm2
# 需要導入模塊: from solfege.mpd.track import Track [as 別名]
# 或者: from solfege.mpd.track.Track import set_bpm [as 別名]
def test_set_bpm2(self):
"""
Two set_bpm in a row should only generate MIDI events for the
last one.
"""
t = Track()
t.set_bpm(120)
t.set_bpm(121)
t.note(4, 50)
self.assertEquals(MidiEventStream(t).str_repr(1),
"t121/4 p0:0 v0:100 n0:50 d1/4 o50")
示例3: test_set_bpm3
# 需要導入模塊: from solfege.mpd.track import Track [as 別名]
# 或者: from solfege.mpd.track.Track import set_bpm [as 別名]
def test_set_bpm3(self):
"""
When two tracks set a different tempo, the tempo from the
last track is used. There is not issues two MIDI events.
"""
t1 = Track()
t1.set_bpm(120)
t1.note(4, 50)
t2 = Track()
t2.set_bpm(121)
t2.note(4, 55)
self.assertEquals(MidiEventStream(t1, t2).str_repr(1),
"t121/4 p0:0 v0:100 n0:50 n0:55 d1/4 o50 o55")