Hum ๐Ÿ‘„

A music notation language and synthesizer written in Rust.

Hum converts *.hum files to playable *.wav files.

Building the project

To build the project, use cargo build in the root directory.

Testing the project

To test the project, use cargo run in the root directory.

Hum requires two command-line arguments: 1. the path of the *.hum file 2. the desired path of the *.wav file

To convert the included sample *.hum file, "daisy.hum," use in the root directory, for example:

cargo run daisy.hum daisy.wav

DISCLAIMER:

This program produces sound output in the form of *.wav files, and it is not yet considered stable. I have tried to limit the volume in the code, but you should turn your volume down before experimenting with sound output. I don't want anybody to hurt their ears or speakers while using the program ๐Ÿ™ƒ.

An Explanation of the Hum Music Notation Language:

Hum files are regular and procedural in nature. They consist of a series of sentences separated by the "." character. Each sentence consists of two clauses separated by the ":" character. The first clause is the command, and the second clause is the value. I haven't implemented hardly any error handling yet, so if you don't have exactly one ":" for every "."โ€“โ€“or you use an unknown command or value patternโ€“โ€“it's very possible that the program will crash or produce unexpected output.

List of currently available commands:

Why Did I Make This?

I thought it was cool, and I've never programmed a large project in Rust before, so obviously I'm the person for the job ๐Ÿ˜Ž. Also, I like the idea of an open music markup language being easily readable by both humans and computers. I think if it's implemented correctly, it might make it easier to preserve musical scores in digital format. This has been a fun project to get started with so far, and I hope that people make awesome music with it.

Why the Choice of License?

I originally imagined this project acting as a more of a standalone application as opposed to a library, and I would like to remain open, so I felt that the GPLv3 was a good fit. For more insight on what you are and aren't allowed to do with this code, you can read more about its license at the GNU website. If anybody actually starts contributing to or using this code and wants to convince me to release it under an alternative license, then just contact me, and I am open to having a conversation regarding the matter ๐Ÿ™‚.