Home
last modified time | relevance | path

Searched refs:midi_time (Results 1 – 9 of 9) sorted by relevance

/dports/print/py-frescobaldi/frescobaldi-3.1.3/frescobaldi_app/midifile/
H A Dsong.py127 for midi_time, evs in sorted(d.items()):
130 times.append((midi_time, get_tempo(e)))
135 def real_time(self, midi_time): argument
140 if times[i][0] >= midi_time:
145 real_time += (midi_time - times[-1][0]) * times[-1][1]
148 def msec(self, midi_time): argument
150 return self.real_time(midi_time) // 1000
168 for midi_time in times:
169 for e in events(d[midi_time]):
222 b.append((t.msec(midi_time), measnum, beat, num, den))
[all …]
/dports/devel/allegro/allegro-4.4.3.1/examples/
H A Dexmidi.c100 pos = midi_time; in main()
/dports/devel/allegro/allegro-4.4.3.1/src/
H A Dmidi.c85 volatile long midi_time = 0; /* current position in seconds */ variable
937 midi_time = midi_timers / TIMERS_PER_SECOND; in midi_player()
1241 midi_time = 0; in prepare_to_play()
1514 return midi_time; in get_midi_length()
1571 LOCK_VARIABLE(midi_time); in midi_lock_mem()
/dports/devel/allegro/allegro-4.4.3.1/include/allegro/
H A Dmidi.h115 AL_VAR(volatile long, midi_time); /* current position in the midi file, in seconds */
/dports/multimedia/py-mido/mido-1.2.10/docs/
H A Dmidi_files.rst188 .. image:: images/midi_time.svg
/dports/audio/fluidsynth/fluidsynth-2.2.4/
H A DChangeLog610 * doc/midi_time.txt: Added a memo on midi timing.
/dports/games/doomsday/doomsday-2.3.1/doomsday/external/fluidsynth/
H A DChangeLog610 * doc/midi_time.txt: Added a memo on midi timing.
/dports/devel/allegro/allegro-4.4.3.1/docs/src/
H A Dallegro._tx9876 @xref midi_seek, midi_pos, midi_time, midi_msg_callback
9934 @xref load_midi, midi_time, midi_pos
9939 will contain the negative number of beats, and midi_time the length of the
9949 pos = midi_time;
9955 Returns the value of midi_time, the length of the midi.
9984 @@extern volatile long @midi_time;
15441 @xref midi_pause, midi_pos, midi_resume, midi_time, play_midi, readkey
H A Dchanges._tx1093 Elias Pschernig added a get_midi_length function and a midi_time variable.