[CM] Tempo and import-events question

Rick Taube taube@uiuc.edu
Tue, 13 Dec 2005 08:19:36 -0600


i think maybe the way to do this is to import with a fixed :tempo and 
then write the data out with a :tempo of whatever you want. you 
probably have to delete the tempo change from the data that you import 
before you write it out again. do simpethig lie this:

(setq foo (import-events "whatever.mid" :tempo 60))
(setq foo (remove-tempo-change foo))
(events foo :tempo 80)

if you have problems, please send me the midi file and ill try to 
figure out what to do.
--rick