I would like to get direct xml result rather than waiting until playback has finished. How could I achieve this?
1 Like
Call s.fast_forward_in_beats(float("inf"))
on your Session
object.
In general, fast_forward_in_beats
and fast_forward_in_time
are good for getting to different moments in the score.
thanks a lot, that works!