Hi Marc,
Is there a way to save the volume of the notes played in musicxml?
I have some code like this:
s = Session().run_as_server()
s.start_transcribing()
s.fork(…)
performance = s.stop_transcribing()
score = performance.to_score(time_signature=“4/4”)
music_xml = score.to_music_xml()
music_xml.export_to_file(“my_music.xml”)
I can not find anything in the docs.
Thanks for your help.