Verovio Music Renderer

by Kornelius Paede
5
4
3
2
1
Score: 53/100

Description

Category: Creative & Writing Tools

The Verovio Music Renderer plugin brings high-quality music score rendering to your notes using the Verovio engraving library. It supports MEI, ABC, MusicXML, and PAE formats, and can render music directly from code blocks, local files, or external URLs. You can preview scores as SVG, listen to audio playback with synchronized note highlighting, and even use page-turning controls for practice or performance. A dedicated side panel with syntax highlighting allows for inline editing of MEI code, and clicking on notes in the render jumps to their source. Advanced options include custom fonts, scaling, and selective measure rendering.

Reviews

No reviews yet.

Stats

29
stars
1,599
downloads
2
forks
593
days
236
days
236
days
1
total PRs
0
open PRs
1
closed PRs
0
merged PRs
10
total issues
2
open issues
8
closed issues
86
commits

Latest Version

8 months ago

Changelog

  • fixed that settings were not saved
  • implemented dark mode
  • you can pick a highlight color thanks to @CricHammel

README file from

Github

Verovio Music Renderer for Obsidian

This is a plugin for Obsidian that uses Verovio – a lightweight open-source library for engraving Music Encoding Initiative (MEI) music scores (as well as ABC, MusicXML and PAE files) into SVG. With this plugin, you can render musical scores seamlessly within Obsidian, edit them and play them back, enhancing your efficiency when working with written music.

The plugin currently has the following features:

  • Rendering MEI, ABC, MusicXML, PAE notation dynamically from files in the Obsidian folder (relative paths) and URLs (absolute paths) and also directly from code blocks.
  • A side panel where you can edit your musical code (with syntax highlighting for XML and MEI). You can click on a rendered note and it will jump to the right line of code. (Only works for MEI code directly from the code block, not for linked files.)
  • A download button for the rendered SVG file (the toolbar is visible when hovering the mouse over the rendered music).
  • A settings menu to adjust various rendering options (including a dark mode and highlight color).
  • Sound playback of the rendered music.
  • Highlighting of live playback notes, synced to the sound playback.
  • Opening the rendered file via an external editor (if you want to edit your files with one click).
  • Rendering specific measure selections.
  • Page turning buttons and automatic page turning during playback

How to Use

Install the plugin, then copy the following into your Obsidian document:

COPY FROM HERE
```verovio
https://www.verovio.org/examples/downloads/Schubert_Lindenbaum.mei
```COPY UNTIL HERE

or just use a filename from a file in your Obsidian Vault like this:

COPY FROM HERE
```verovio
Schubert_Lindenbaum.mei
```COPY UNTIL HERE

you can also render directly from the Obsidian Code Block:

it works with MusicXML

COPY FROM HERE
```verovio
<mei xmlns="http://www.music-encoding.org/ns/mei">
  <music>
    <body>
      <mdiv>
        <score>
          <section>
            <measure n="1">
              <staff n="1">
                <layer n="1">
                  <note pname="c" oct="4" dur="4"/>
                  <note pname="e" oct="4" dur="4"/>
                  <note pname="g" oct="4" dur="4"/>
                </layer>
              </staff>
            </measure>
          </section>
        </score>
      </mdiv>
    </body>
  </music>
</mei>
```COPY UNTIL HERE

also with ABC Notation

COPY FROM HERE
```verovio
X:1
T: Test-Melody
M:4/4
K:C
C D | G A B c |
```COPY UNTIL HERE

and of course MEI

COPY FROM HERE
```verovio
<mei xmlns="http://www.music-encoding.org/ns/mei" meiversion="4.0.0">
  <meiHead>
    <fileDesc>
      <titleStmt>
        <title>Another Test</title>
      </titleStmt>
      <pubStmt/>
    </fileDesc>
  </meiHead>
  <music>
    <body>
      <mdiv>
        <score>
          <scoreDef meter.count="4" meter.unit="4" key.sig="0">
            <staffGrp>
              <staffDef n="1" lines="5" clef.shape="G" clef.line="2"/>
            </staffGrp>
          </scoreDef>
          <section>
            <measure n="1">
              <staff n="1">
                <layer n="1">
                  <note pname="c" oct="4" dur="4"/>
                  <note pname="d" oct="4" dur="4"/>
                  <note pname="e" oct="4" dur="4"/>
                  <note pname="f" oct="4" dur="4"/>
                </layer>
              </staff>
            </measure>
          </section>
        </score>
      </mdiv>
    </body>
  </music>
</mei>
```COPY UNTIL HERE

and also PAE

COPY FROM HERE
```verovio
@clef:G-2
@keysig:
@timesig:c
@data:2''C'B/=/''CC/=/2-4DE/2-8{'B''C+C'B}/2''C-//
```COPY UNTIL HERE

Side Panel

You can open a side panel via the Obsidian Command Palette to edit your musical code directly, complete with XML and MEI syntax highlighting. Clicking on a rendered note will jump you to the corresponding line of code—but this only works for MEI inside a code block, not for externally linked files.

Rendering Options

In the settings menu of the Obsidian plugin, you can adjust several important parameters globally for all renderings, including a dark mode and picking a highlight color. You can also apply custom settings for a specific rendering by adding them to your code block in Obsidian. Please refer to the Verovio documentation for available options. Note that not all options may work and that they interfere with each other. Please note, these won't work (yet), when you're rendering from a code block.

COPY FROM HERE
```verovio
Schubert_Lindenbaum.mei
font: Leland
scale: 10
breaks: encoded
```COPY UNTIL HERE

Rendering Measure Selections

A special feature of this plugin is rendering predefined measures. To render measures 1-10, you can use the measureRange command like in this example. Please note that in this example, measure 20 is not included in the rendering. The type of breaks you choose to render can greatly influence the output (or even make the plugin render nothing at all). For example, "encoded" breaks can result in a blank rendering if no encoded break exists in your selection. Because of this, "breaks: none" is added to the example below, which might be a good default option for rendering musical snippets. You can also use "start" and "end" instead of numbers, e.g. measureRange: 15-end – or just render single measures: measureRange: 5

COPY FROM HERE
```verovio
Schubert_Lindenbaum.mei
scale: 50
breaks: none
measureRange: 1-20
```COPY UNTIL HERE

Installing the Plugin

This plugin is part of the Obsidian community plugins. You can also install it via BRAT (just add the URL you're on right now as a beta plugin). You can also do it manually: Copy the files main.js and manifest.json from the release (look right) into the plugin folder of your vault like this: VaultFolder/.obsidian/plugins/Verovio-Music-Renderer/.

If You Are Cloning This Project, Read This:

Additionally Used (With Many Thanks):

I have just rudimentary programming skills and use mostly ChatGPT.

FAQ

Q: Is it working with the mobile versions of Obsidian? A: Yes, but the buttons for download and opening externally don't work.

Q: The "folder" icon doesn't open anything. A: You need to define a default application for that file type to open it in your operating system.

Q: When I use "measureRange," it just renders a blank box. A: Try changing the breaks type in the plugin options.

Q: I don't hear anything, and playback isn't starting. A: Make sure you're connected to the internet to load the SoundFont for playback. It won't work offline, and note highlighting won't either. Check the Obsidian dev tools when in doubt.

Similar Plugins

info
• Similar plugins are suggested based on the common tags between the plugins.