Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for an API for rendering music scores in Java.

The only library I've been able to find (which I'll mention in an answer) is far from feature-complete.

Several people online have mentioned JFugue, but as far as I can tell, JFugue can play music, but rendering sheet music is only part of his wish list.

So, does anyone know of any others? Plus big points for being free, and plus tiny points for having a non-viral license.

share|improve this question
Hey, what happened to my "community wiki" button? – BlueRaja - Danny Pflughoeft Apr 2 '11 at 21:22
3  
What's a "non-viral license"? – Hovercraft Full Of Eels Apr 2 '11 at 21:25

10 Answers

Disclaimer: I don't know anything about music ;-)

You have pretty strict requirements ;-) I have suggestions, but they don't meet all of your needs. :-(

MusicXML

As you may already know, there is an XML format called MusicXML, specs designed by Recordare, which can be used to lay out music in XML notation.

For example, "a one-measure piece of music that contains a whole note on middle C, based in 4/4 time" would look like this:

a one-measure piece of music that contains a whole note on middle C, based in 4/4 time

The MusicXML to render it would be something like:

<score-partwise version="2.0">
  <part-list>
    <score-part id="P1">
      <part-name>Music</part-name>
    </score-part>
  </part-list>
  <part id="P1">
    <measure number="1">
      <attributes>
        <divisions>1</divisions>
        <key>
          <fifths>0</fifths>
        </key>
        <time>
          <beats>4</beats>
          <beat-type>4</beat-type>
        </time>
        <clef>
          <sign>G</sign>
          <line>2</line>
        </clef>
      </attributes>
      <note>
        <pitch>
          <step>C</step>
          <octave>4</octave>
        </pitch>
        <duration>4</duration>
        <type>whole</type>
      </note>
    </measure>
  </part>
</score-partwise>

So, that seems like a pretty nice, standardized format you could follow, assuming you were developing your own library (which you're not doing).

However, this format seems to be very popular: there's a whole bunch of software that Recordare lists as reading and writing MusicXML, but I couldn't find anything that met your requirements (Java library, non-viral license). abc4j seemed OK, but you've already mentioned it as not having all the features you wanted.

Zong!Viewer by Xenoage Software is an free Java program that reads and writes MusicXML. However, it is licensed under GPL. :-(

I guess, if you're not interested in generating your own library, that rules MusicXML out of the picture.

Notation Interchange File Format

Anyway, there's also a format called Notation Interchange File Format, which doesn't seem to be as popular as MusicXML. However, I found a Java applet called Niffty NIFF File Viewer which, given NIFF Notation, displays graphical musical notations. This is also licensed as GPL.

The Niffty guy also wrote a very detailed Programmer's Guide that discusses how to work with the Niffty source code. Might be useful?

ABC Notation

There's another form of notation called ABC Notation which has apparently "been in use since at least the 19th century". There's a wide variety of software that uses it. I didn't look at most of the programs listed, but one I kept seeing mentioned on various Google searches was Five Line Skink.

Five Line Skink "is a desktop application which is used to create music staff notation using the abc standard". It's written in Java and is freeware (as in beer, not as in speech). I didn't see any mention of a specific license, though:

Skink is freeware. If you would like to make a donation for it, you can do so through the PayPal button below (use the address above). I may make it open-source, depending on whether I get it to the point of wanting to show the world my mistakes... I still have lots to do before that time, however, so don't ask!

Maybe you should ask anyway, in the form of a nice donation ;-) Tell the author what you're trying to do.

OK! Hope some of this information helps. Good luck!

share|improve this answer
Since this is the only answer (other than my own) which found a free Java API for notation rendering (actually, two!), I'm awarding you the points. Congrats - and thanks! – BlueRaja - Danny Pflughoeft Apr 13 '11 at 17:36
@BlueRaja - Thanks!!! Sure, no problem -- hope its helpful! – Pandincus Apr 13 '11 at 22:25
2  
+1 for one who doesn't know much about music you sure know some useful info about this. – CRice Aug 7 '11 at 5:04
up vote 7 down vote accepted

The only library I've been able to find is ABC4j, which takes an ABC string as input, and outputs some pretty sheet music.

However, it is still in alpha, and seems to be missing some pretty basic features:

  • Dynamics
  • Grand Staff (for writing piano music)
  • Dotted notes (???)

ABC4j is licensed under LGPL (non-viral)

share|improve this answer

If you can loosen the requirements (quite a bit...), Lilypond does gorgeous music notation. Its input is in the form of TeX-inspired text, and its behavior can be altered/extended by writing Scheme code.

Where it misses your requirements:

  1. Not a library, and not in Java, so you'd have to shell out to a separate process.
  2. It's part of the GNU project, so you may not be happy with the licensing.
share|improve this answer
+1 While not being the easiest or most portable solution I want to second this because a organist/composer friend of mine is really very happy with the quality of the output of lilypond. – Eelke Apr 7 '11 at 18:13
2  
While I agree that Lilypond creates truly beautiful sheet music, I am 99% sure BlueRaja is aware of this (it is mentioned in the JFugue link from the original question). But this answer doesn't just loosens the requirements (quite a bit...), it completely disregards them, IMO. The question/requirement is: "... an API for rendering music scores in Java.", which Lilypond is not. – Bart Kiers Apr 8 '11 at 6:54

Have you seen JMusic? It's at api for Java that renders music scores and allows you to convert to midi or .au files. It seems pretty complete. Here's the link: http://explodingart.com/jmusic

JMusic is licensed under GPL (viral)

share|improve this answer
1  
Reading through the documentation, I don't see it mention it can render (as in display) music notation, only playing, or exporting to XML. – Bart Kiers Apr 7 '11 at 10:37
1  
I'm not sure if it actually saves and exports the sheet music, but view.notate(score) will let you show a score as sheet music. (Sorry, I'm just learning how to use this.) – lightning Apr 7 '11 at 21:49
Ah, it wasn't apparent from glancing over the docs that this feature was in there. Will have a look later on at JMusic. Thanks for the info. – Bart Kiers Apr 8 '11 at 6:50
Could you post some sample code? I don't see reference to view.notate(score) anywhere.. – BlueRaja - Danny Pflughoeft Apr 12 '11 at 16:50

Here's another one: Guido. It is not written in Java, but it does have a Java JNI interface.

Guido is licensed under LGPL (non-viral).

share|improve this answer

Googling a minute ago I found this:

JMSL is a Java API for music notation that includes its own notation rendering engine.

(Source of query)

I hope this works for you (at least it seems to have a non-viral license).

share|improve this answer

Have look at Zong! It's still in alpha stage, but under active development.

On request we (the authors) may also provide it under a non-viral license, dependent on your project.

share|improve this answer
This library is no longer available. – Alexander Pacha Feb 26 at 9:12
It is still available here: sourceforge.net/projects/zong/develop - in summer 2013 the whole project (including Editor and Android viewer) will be made available under the GPL – Andi Mar 4 at 21:19

check this out:

Musescore is licensed under GPL (viral)

share|improve this answer
Yep I have seen MuseScore; however, like Lilypond, it is not written in Java. Thanks for the addition, though! – BlueRaja - Danny Pflughoeft Apr 12 '11 at 16:47
Sorry, as the website says that MuseScore is multiplatform, I assumed wrongly that it was written in Java. Anyway, FYI this is the link to the page I used as a source for my query: osalt.com/musescore – Francisco Alvarado Apr 12 '11 at 17:19
About license: Oops! So that also wouldn't helped you anyway, sorry again – Francisco Alvarado Apr 12 '11 at 19:24

How about Impro-Visor, it looks like what you are looking for. I must state that this field is completely foreign to me, I'm just good at finding stuff.

It isn't a library but it is open-source and written is Java...
It is GPL, and downloadable from sourceforge or Yahoo. you can see the sourceforge project page here. The project page can be found here.

Here is the project description:

Impro-Visor (short for “Improvisation Advisor”) is a music notation program designed to help jazz musicians compose and hear solos similar to ones that might be improvised. The objective is to improve understanding of solo construction and tune chord changes. There are other, secondary, things it can do, such as improvise on its own. It has also been used for transcription. Because rhythm-section (e.g. piano, bass, drums) accompaniment is automatically generated from chords, Impro-Visor can be used as a play-along device. Now having a wider array of accompaniment styles, its use is not limited to jazz.

Again, this really isn't my field so if this isn't what you mean I will delete my answer...

share|improve this answer
Did they write their own notation renderer, or use another open source library? I notice, for instance, they use jMusic, but I can't tell at a glace if they use it to render music (or if, indeed, it can render music) – BlueRaja - Danny Pflughoeft Apr 12 '11 at 22:11

Here's another I just found: DixShtix

It is "Early 0.1 Alpha" and doesn't seem to be under active development anymore, but it is free and licensed under the MPL (non-viral).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.