Skip to content
Advertisement

Why are there multiple set_tempo meta midi messages? (and how to deal)

I am currently writing a parser for midi files so I can generate my own music using a Markov chain.

I’m a bit confused as to why there are so many set_tempo midi meta messages (in the track 0 meta message section) of each file. I would understand if they were set to different delta time, but some are not. Also some seem to set the same tempo for the same delta time which seems weirdly superfluous.

Here’s an example…

JavaScript

so,

(1) why are there duplicates?
(2) are the changes in tempo at different delta times important ? (ie. is this because the music speeds up/slows down in various parts
(3) Is it worth implementing a hidden markov chain that deals with tempo changes for my generator

Any help at all would be appreciated. N.B. I know very little about music theory

Cheers

Here is my solution, have I done something wrong (reply to comment in answer below).

JavaScript

Advertisement

Answer

  1. I suppose these duplicates are just artifacts of recording from real instrument or something like this. It’s not important.
  2. Yes, changes of tempo cause music is playing slower or faster.
  3. You absolutely must respect all tempo changes. That follows from previous sentence.
User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement