zoukankan      html  css  js  c++  java
  • music21 关联 MuseScore 和 Lilypond

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

    因此 在安装 music21后,需要配置环境变量,yvivid 在 music21的官方 doc 没找到简单的指引,后来搜到相关信息,整理如下。

    首先、在 python 中导入music21(安装可以 pip install 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")

    最后,yvivid做个验证测试:

    from music21 import *
    littleMelody = converter.parse("tinynotation: 3/4 c4 d8 f g16 a g f#")
    littleMelody.show()

    作者:www.cnblogs.com/yvivid

    参考文献:

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

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

  • 相关阅读:
    Java 位运算(移位、位与、或、异或、非)
    负数的二进制表示方法(正数:原码、负数:补码)
    MacOS X终端里SSH会话管理
    Mac软件分享:上小巧实用的GIF格式录屏软件 LICEcap
    问题追踪:ImageView执行缩放动画ScaleAnimation之后,图像显示不全的问题。
    自定义res/anim加载类,加载自定义Interpolator
    原文翻译 Android_Develop_API Guides_Animation Resources(动画资源)
    OAuth2.0详解
    Grails框架使用指南
    Groovy语言学习汇总
  • 原文地址:https://www.cnblogs.com/yvivid/p/music21_setting.html
Copyright © 2011-2022 走看看