musicxml-to-mp3

0.0.3 • Public • Published

musicxml-to-mp3 NPM version

Convert MusicXML to MP3.

Installation

Install the package with NPM:

$ npm install -g musicxml-to-mp3

The -g flag is recommended for easy CLI usage, but completely optional.

Usage

Run it via the CLI:

$ musicxml-to-mp3 song.xml song.mp3

Or, programmatically interact with its API:

var musicXmlToMp3 = require("musicxml-to-mp3");
 
var stream = musicXmlToMp3.convert("song.xml", "song.mp3");
 
stream.on("finish", function() { console.log("Done!"); });

Related

This package is mostly just a thin wrapper around musicxml-to-pcm and node-lame.

If MP3 simply isn't your thing, then perhaps try musicxml-to-wav or musicxml-to-speaker.

Dependencies (2)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i musicxml-to-mp3

    Weekly Downloads

    1

    Version

    0.0.3

    License

    MIT

    Last publish

    Collaborators

    • lukehorvat