My midifile looks like this:
note_on channel=0 note=75 velocity=62 time=0
note_off channel=0 note=75 velocity=0 time=0.20833324999999997
note_on channel=0 note=76 velocity=62 time=0
note_off channel=0 note=76 velocity=0 time=0.20833324999999997
note_on channel=0 note=75 velocity=62 time=0
note_off channel=0 note=75 velocity=0 time=0.20833324999999997
note_on channel=0 note=76 velocity=62 time=0
note_off channel=0 note=76 velocity=0 time=0.20833324999999997
The time are all very small numbers but the ticks per beat(tpb) is '384'. Everywhere I read that the 'time' numbers are expressed in 'ticks'(the smallest time-unit in midi) so I would expect the time to be much larger numbers. I am refering to Mido(readthedocs). What do they mean when they say:
'time is in delta time(in ticks)'
In this case the first note off should be at time=192(quarter=384/2) but it is at 0.20833324999999997. What do I get wrong?
I do understand the concept of delta time but I dont get how the tpb relates to 'time'.