musicxml-to-wav

0.0.2 • Public • Published

musicxml-to-wav NPM version

Convert MusicXML to WAV.

Installation

Install the package with NPM:

$ npm install -g musicxml-to-wav

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

Usage

Run it via the CLI:

$ musicxml-to-wav song.xml song.wav

Or, programmatically interact with its API:

var musicXmlToWav = require("musicxml-to-wav");
 
var stream = musicXmlToWav.convert("song.xml", "song.wav");
 
// It's a Node.js stream, mate.
stream.on("finish", function() { console.log("Done!"); });

Related

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

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

Package Sidebar

Install

npm i musicxml-to-wav

Weekly Downloads

1

Version

0.0.2

License

MIT

Last publish

Collaborators

  • lukehorvat