13

I am a music student looking for software that can convert midi files to sheet music. Are there any programs for Ubuntu like the Windows programs Notation Musician or MidiNotate Player?

wjandrea
  • 14,543
siraj
  • 5,407

4 Answers4

11

Try MuseScore. It's also in your package manager:

sudo apt install musescore

Or install it via snapcraft.io. Using terminal:

sudo snap install musescore
Pablo Bianchi
  • 17,552
musescore
  • 111
  • 2
3

There is the package abcmidi that provides the application midi2abc, capable of converting midi files to abc file.

sudo apt install abcmidi
midi2abc prelude.mid > prelude.abc  # midi to abc notation format
yaps prelude.abc  # abc format to postscript
evince prelude.ps  # open with evince

abc files can be easily converted to something printable with yaps from the package of the same name.

Pablo Bianchi
  • 17,552
enzotib
  • 96,253
1

Rosegarden is mainly a full blown MIDI sequencer but it also comes with a quite professional notation feature to convert MIDI data to scores:

Install via the software center

Depending on your needs in case you only need a small piece of MIDI to transform it to scores this may be overkill, but if you need to edit these files or start composing you may need one or the other of it's additional features.

Takkat
  • 144,810
  • excellent tool, easy to use and powerful features. however, the pdf export ("print preview") is very buggy for me, to the point of not being usable. – phil294 Apr 06 '17 at 02:34
1

TuxGuitar is similar to GuitarPro for Windows. You can import midis, edit sheet music, and export to ASCII, PDF, and others.

sudo apt install tuxguitar
wjandrea
  • 14,543