Import and export in integrated in MuseScore (as of version 4.2). File opening and file saving follows the same workflow as for other external file formats (e.g., MusicXML).

File opening

MEI files can be imported from the Open... menu with a selection of *.mei files:

image

Previously opened MEI files appear in the file list with a dedicated <xml> 🎵 MEI file icon:

image

The Preferences dialog includes a MEI checkbox option Import MEI layout in the Import section:

image

File saving

MEI files can be saved through the Export... menu that includes an MEI section. The MEI section includes an option Include page and system breaks as well as the standard part extraction option:

image

User feedback

When possible, some feedback is provided when features cannot be imported. The feedback is shown in dialog that allows for the process to be continued if desirable:

image

Additional lower-level feedback might be provided in the logs

Metadata

The following metadata tags from the score properties are exported to the MEI header:

  • Work title
  • Arranger
  • Composer
  • Copyright
  • Lyricist
  • Translator
<meiHead>
    <fileDesc>
        <titleStmt>
            <title>Work title</title>
            <respStmt>
                <persName role="arranger">Arranger is me</persName>
                <persName role="composer">Composer is me</persName>
                <persName role="lyricist">Another lyricist</persName>
                <persName role="translator">Deepl</persName>
            </respStmt>
        </titleStmt>
        <pubStmt>
            <date isodate="2023-05-09-14:34:46" />
            <availability>
                <distributor>CC-By</distributor>
            </availability>
        </pubStmt>
    </fileDesc>
</meiHead>

The tags Creation date, Platform and Source are currently not preserved since no appropriate place in MEI-Basic has been found

When importing and MEI file, the values in the MEI header (if found) as set back as score properties. The entire MEI header is also preserved. When exporting again to MEI, the original header is re-exported as such and the score properties are ignored. However, the original MEI header can be deleted from the score properties dialog.

Command-line

The conversion from and to MEI through the MuseScore is possible with standard MuseScore command-line options.

For example, converting a MuseScore file to MEI:

mscore file.mscz -o file.mei

Converting an MEI file to MuseScore:

mscore file.mei -o file.mscz

The option -f can also be added to by-pass score corruption warnings.