You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In order to have our own VerovioConverter support jumps and repeats, the trivial solution is to unroll the score at the level of Player. However, this means that the score now shows unrolled, which is not ideal.
To keep the original jumps and repeats in Player, we need to fix both the MIDI generator and the timemap generator in VerovioConverter.
The MIDI generator can be already solved today by automatically unrolling the incoming MusicXML before feeding it to the core Verovio MIDI converter.
For the timemap generator, the unrolling approach would not work, because it would be out of sync with the Player display. The problem to be solved is to map an incoming timestamp from the unrolled MIDI to the original score. We don't have the benefit of our own musicxml-midi annotations in the MIDI stream, which allow to create the proper timemap. One invariant we can rely on is the measure's number attribute that gets duplicated during unrolling.
The text was updated successfully, but these errors were encountered:
The core Verovio engine does not support jumps and repeats when converting MusicXML to MIDI.
In order to have our own
VerovioConverter
support jumps and repeats, the trivial solution is to unroll the score at the level ofPlayer
. However, this means that the score now shows unrolled, which is not ideal.To keep the original jumps and repeats in
Player
, we need to fix both the MIDI generator and the timemap generator inVerovioConverter
.The MIDI generator can be already solved today by automatically unrolling the incoming MusicXML before feeding it to the core Verovio MIDI converter.
For the timemap generator, the unrolling approach would not work, because it would be out of sync with the
Player
display. The problem to be solved is to map an incoming timestamp from the unrolled MIDI to the original score. We don't have the benefit of our ownmusicxml-midi
annotations in the MIDI stream, which allow to create the proper timemap. One invariant we can rely on is the measure'snumber
attribute that gets duplicated during unrolling.The text was updated successfully, but these errors were encountered: