home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-10-26 | 961 b | 49 lines | [TEXT/ScoM] |
- ; using tempo in sections
-
- (def-orchestra 'orchestra
- all-instruments (piano1 piano2)
- )
-
- (def-section sect-a
- default
- tempo-zones '(1/2 1/2 1/1 1/1 1/1)
- zone '(1/1 1/1 1/1 1/1)
- tempo '(200 170 100 150 175) ; tempos for each tempo zone
- tonality (activate-tonality (major c 4))
- length '(1/8)
- velocity '(64)
- piano1
- channel 1
- symbol '(a b c)
- program '(1)
- piano2
- channel 2
- symbol '(=)
- program '(46)
- )
-
- (def-section sect-b
- default
- tempo-zones '(1/2 1/2 1/1 1/1 1/1)
- zone '(1/1 1/1 1/1 1/1)
- tempo '(200 170 100 150 175) ; tempos for each tempo zone
- tonality (activate-tonality (major c 4))
- length '(1/8)
- velocity '(64)
- piano1
- channel 1
- symbol '(=)
- program '(1)
- piano2
- channel 2
- symbol '(ace)
- program '(46)
- )
-
- (midiport :printer)
-
- (play-file-p "sections with tempos"
- all-instruments '(sect-a sect-b)
- )
-
-