Ask HN: Converting Music into Numbers/Letters?

2 points by redmaverick ↗ HN
The sheet music style is too clunky. I need a way to convert sheet music into numbers or letters. I am trying to create AI to compose music and am looking alternatives for sheet music style notation.

3 comments

[ 3.0 ms ] story [ 20.1 ms ] thread
In theory you should be able to convert sheet music from a PDF to MIDI with something like this (I did a quick Google search)

https://www.musitek.com/smartscore-midi.html

Once you have a MIDI[1] file, you can do a lot of interesting things with your music, such as generating or modifying notes with random values for pitch, velocity etc.

[1] https://en.wikipedia.org/wiki/MIDI

Never realized how easy it was to manipulate a midi file. You can even convert a midi file to csv. Perfect. Thanks!