tags:

views:

37

answers:

2
+1  Q: 

midi delta time

Hi all..

i need help..

i need to know exactly midi delta time format?is it millisecond,tick or what??

and i need formula to convert timestamp in millisecond into midi delta time...

thanks before..

+2  A: 

Delta time is always specified in ticks, which are determined by the PPQ (pulses per quarter note).

So given an offset in milliseconds, you must first convert that to samples (using the sample rate), and then to pulses based on the current tempo and the PPQ.

Nik Reiman
A: 

Take a look at Midi file format under Header Chunk -> Time Division, it's well explained overthere.

Shimmy