PelleJuul / plain-music

A simple format for notating music, readable and writable by both computers and humans.
8 stars 0 forks source link

Some thoughts on 'plain-music' #3

Open dualB opened 4 years ago

dualB commented 4 years ago

Hello! I'm developing some Arduino libraries for teaching purposes, and in the last week I have developed my own musical notation to be able to quickly write score music to be played by a buzzer. It was a simple implementation (you can see it here : https://github.com/TechnoPhysCAL/TGP_Musicien). After that, I searched the web to see if any standard text notation was already existing, because I didn't want to reinvent the wheel. I found your notation (and I have found nothing else really suitable for my needs); coincidentally, many of my notation choices in my own library are very similar with yours.

So, I'm thinking of implementing your notation instead, so I have analyse it and here some thoughts I want to share with you:

That's it for now, have a nice day! Claude

PelleJuul commented 4 years ago

Hi Claude,

Thank you for your thoughts. It seems like a cool project that you're working on. Regarding your comments

It's been a long time since I've worked actively on plain music. However, I recently had a need for language like plain music, only simpler. That language, called Munola, is described in the PDF file I've attached. I'm gonna make a repository for that language sometime soon, but if you're interested I can share the parse that I've written in C++.

munola.pdf

dualB commented 4 years ago

Hi Pelle,

Thanks for you comments. I finally come up with a new notation which borrow some of your items (like grouping); since I'm want to produce single melody and sound, I decided to focus on stuff that affects pitch, duration, intensity and repetition.

You will be able to see it when it will be completed on my Github page.

Thanks again, Claude.