Hey everyone! It’s been quite a while since I’ve posted an update about Alda. First of all, rest assured that I’m still here, and I’m as interested as ever in taking Alda in fun, new directions. I wanted to share a little update about what I’ve been up to lately with Alda. Moreover, I want to highlight an amazing new feature that has been contributed recently and tell you about why I’m so excited about it. We’ll get to that shortly, but first:
A few quick updates
The last time that I had much to say about Alda was when I announced in June 2021 that I had completely rewritten it in Go and Kotlin and released this newer, better version as Alda 2. I’m very happy with how that’s turned out. I’ve been enjoying using Alda 2 myself, and I’ve been finding that it’s easier to maintain than Alda 1 was.
I haven’t had as much time as I’d like to work on Alda recently, but we have managed to do a few things, nonetheless:
-
In December 2021, I refactored the Alda parser to include a first-class AST. Alda 2.1.0 added
--output ast
and--output ast-human
options to thealda parse
command to show the AST of an Alda score, which can be useful for debugging potential parser errors, as well as for building Alda tooling (e.g. for text editors). -
In January 2022, I finished an experimental WebAssembly build of the Alda client. My goal is to eventually run Alda in browsers, as it would be convenient to be able to play around with Alda without needing to install anything to your computer.
-
In April 2022, a
:parts
command was added to the Alda REPL. It prints information about the parts in the current score. -
I also fixed a bunch of bugs and made some general usability improvements from time to time.
MusicXML import
In May 2023, we released Alda 2.2.5, which features a new command called alda
import
. You can use this command to import a MusicXML file and produce a
working Alda score.
MusicXML is a W3C standard open format for exchanging digital sheet music. A lot of popular sheet music applications, including Sibelius and Finale, support exporting your scores to this format. Starting from this release, Alda can now work with these files too. Here is a simple example workflow.
This MusicXML file represents the following score:
We can use Alda to translate a score like this into an Alda score that is roughly equivalent:
Because the Alda CLI can accept input from stdin, we can pipe that Alda code
directly into the alda play
command to hear the score:
Or we can write the Alda code to a file for further experimentation:
As a fun experiment, let’s “round-trip” this score back to MusicXML and see how it compares to the original.
First, we’ll use alda export
to export the Alda file as a MIDI file:
The MIDI file can be played by a variety of different programs, such as TiMidity:
Now that we have a MIDI file, we can import it into another sheet music program, such as MuseScore:
And we can then export the score back to MusicXML:
There are some minor differences between this round-tripped MusicXML file and the original MusicXML file. Notice, for example, that the instruments are presented in a different order, and we’ve lost the grouping bracket around four of the five parts. But apart from the minor differences, it is, for all intents and purposes, the same score!
I’m excited about this feature because now, it is possible for Alda to participate in the ecosystem of music notation software. Now, you can take a MusicXML file (or even a MIDI file) that was written via some other software, and edit it using Alda. And you can go the other way, too: you can take a score that you wrote in Alda, export it to MIDI, and import it into other software.
MusicXML import is a brand new feature for Alda, and it’s bound to be a little
rough around the edges, but I’m confident that it will become more robust over
time. Please give it a try (you can download the latest version of
Alda, or run alda update
if you already have an older version
installed) and let us know what you think! If you notice any problems with alda
import
, it’ll help us out if you open an issue on GitHub.
Thanks to our contributors!
I’d like to give a huge thanks to David Lu and Alan Ma for their hard work on contributions to this feature. Being able to import Alda scores from MIDI files is a feature that was requested early on, and I’m really happy that thanks to the help of our contributors, we were finally able to make this intriguing idea a reality.
Comments?
Reply to this tweet with any comments, questions, etc.!