howlerjs

Externs of HowlerJS v2.0.0 for Haxe - Audio library for the modern web.
https://github.com/adireddy/haxe-howler

To install, run:

haxelib install howlerjs 2.0.4 

See using Haxelib in Haxelib documentation for more information.

README.md

Haxelib Version Build Status Built with Grunt

haxe howler logo

Externs of howler.js for Haxe - Modern Web Audio Javascript Library.

Installation

haxelib install howlerjs

Demo

Look at the samples folder for the source code of above example.

Usage

import howler.Howl;

class Main {

    public function new() {
		var options:HowlOptions = {};
		options.src = ["sound.mp3", "sound.ogg"];
		options.autoplay = false;
		options.loop = true;
		var snd:Howl = new Howl(options);
		snd.play();
    }

    static function main() {
		new Main();
    }
}

Licensing Information

MIT license

This content is released under the MIT License.

howler.js is written by James Simpson and licensed under the MIT License.

Contributors
adireddy
Version
2.0.4
Published
7 years ago
License
MIT

All libraries are free

Every month, more than a thousand developers use Haxelib to find, share, and reuse code — and assemble it in powerful new ways. Enjoy Haxe; It is great!

Explore Haxe

Haxe Manual

Haxe Code Cookbook

Haxe API documentation

You can try Haxe in the browser! try.haxe.org

Join us on GitHub!

Haxe is being developed on GitHub. Feel free to contribute or report issues to our projects.

Haxe on GitHub