Re: Midi2ly + Absolute Mode doesnt work
Joram Berger via bug-lilypond <[email protected]> Mon, 4 Nov 2024 14:12:30 +0100
| Newsgroups | gmane.comp.gnu.lilypond.bugs |
|---|---|
| Message-ID | <[email protected]> |
Lucas Cavalcanti: > s = s + "'" * commas In this script, commas should be an integer. I don't know why it is not, but you could change it to: s = s + "'" * int(round(commas)) for a quick workaround.