Music21 关联 MuseScore 和 Lilypond

Posted yvivid

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Music21 关联 MuseScore 和 Lilypond相关的知识,希望对你有一定的参考价值。

在python安装 music21后,需要关联 musescore 或 lilypond 才能可以用图形化的形式看到 乐谱。

因此 在安装 music21后,需要配置环境变量

首先、 通过 导入music21:

from music21 import *

然后,查看环境变量有哪些。

>>>environment.keys()

[directoryScratch, lilypondPath, lilypondVersion, lilypondFormat, lilypondBackend, 
musicxmlPath, midiPath,
graphicsPath, vectorPath, pdfPath, braillePath, musescoreDirectPNGPath,
showFormat, writeFormat, ipythonShowFormat,
autoDownload, debug, warnings, localCorpusSettings,
localCorporaSettings, manualCoreCorpusPath, localCorpusPath]

或者是 

>>> us = environment.UserSettings()
>>> us.keys()
[directoryScratch, lilypondPath, lilypondVersion, lilypondFormat, lilypondBackend, musicxmlPath, 
midiPath, graphicsPath, vectorPath, pdfPath, braillePath, musescoreDirectPNGPath, showFormat,
writeFormat, ipythonShowFormat, autoDownload, debug, warnings, localCorpusSettings,
localCorporaSettings, manualCoreCorpusPath, localCorpusPath]

 

后续统一使用后者进行配置。

对于 lilypond的配置(路径请自行编写):

us[lilypondPath] = C:/Program Files (x86)/LilyPond/usr/bin/lilypond.exe

对于 musescore的配置: 

us[‘musescoreDirectPNGPath‘] = "C:/Program Files (x86)/MuseScore 2/bin/MuseScore.exe"
us[‘musicxmlPath‘] = "C:/Program Files (x86)/MuseScore 2/bin/MuseScore.exe"

 

如果 keys()里面没有 相关配置,可以先set出相关配置项。

environment.set("musescoreDirectPNGPath", "C:/Program Files (x86)/MuseScore 2/bin/MuseScore.exe")
environment.set("musicxmlPath", "C:/Program Files (x86)/MuseScore 2/bin/MuseScore.exe")

 

参考:

1、http://web.mit.edu/music21/doc/usersGuide/usersGuide_08_installingMusicXML.html

2、https://stackoverflow.com/questions/25879764/creating-images-of-notes-in-music21









以上是关于Music21 关联 MuseScore 和 Lilypond的主要内容,如果未能解决你的问题,请参考以下文章

music21:读取 MIDI 文件的 BPM 和乐器信息并将其写回文件

Music21:获取音符的曲目索引

保存到 MIDI 文件时,Music21 一次播放所有音符

如何从 music21 乐谱中获取所有钢琴部分?

music21:从平面乐谱中获取 midi 声音的声音/程序/乐器?

使用带有 partitionByInstrument() 的 music21 读取 MIDI 文件以获取返回空列表的音符和和弦