Skip to content

manxorist/chiptune2.js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Chiptune.js

Version 2

This is a javascript library that can play module music files. It is based on the libopenmpt C/C++ library. To translate libopenmpt into Javascript emscripten was used. For audio output inside the browser WebAudio API ist used.

Features

  • Play all traker formats supported by libopenmpt (including mod, xm, s3m, it)
  • Simple Javascript API
  • Pause/Resume
  • Tested with Google Chrome and Firefox
  • Play local (HTML5) and remote files (XHR)
  • Stereo playback

To do

  • Looping mode
  • Module metadata
  • Playback information (e.g. position, speed, bpm)
  • Mixer settings (e.g. sampling rate, resolution)
  • Seekbar support

Demo

See it in action here.

Just drop a module (e.g. from modarchive.org) on the demo page and enjoy.

Development

To compile libopenmpt to javascript you need a recent version of emscripten. Take a look at thier wiki for building instructions. Make sure you have it setup correctly and emcc is in your PATH.
With emscripten ready you should get a copy of libopenmpt. Go to thier website, download the latest snapshot and extract it.
Now you're ready to build. Use this command:

make CONFIG=emscripten

If it runs successfully two file will be created inside the bin directory.

  1. libopenmpt.js is the library you want. You can use it with chiptune2.js.
  2. libopenmpt_test.js is the libopenmpt test suite. It is meant to run in nodejs.

License

All code in this project is MIT (X11) licensed. The only exception are the compiled libopenmpt parts which remain under the OpenMPT project BSD license.

License text below:

Copyright © 2013-2014 Simon Gündling.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

much like chiptune.js - but newer and neater

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 55.2%
  • JavaScript 44.8%