ChatGPT custom prompts

This commit is contained in:
Elias Bachaalany
2024-03-08 10:31:50 -08:00
parent f70541dcbe
commit d3fa35bbc9
1424 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
for part in score.parts: # score is returned from the previous process_and_output_score function call
# Iterate through all elements in the part
for element in part.recurse():
#Make changes e.g. add Articulation and Expression
musicxml_path = '/mnt/data/song_musicxml.xml'
midi_path = '/mnt/data/song_midi.midi'
score.write('musicxml', fp=musicxml_path)
score.write('midi', fp=midi_path)