Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/nekobato/dokiaudio

Play Web Audio as Streaming Sound
https://github.com/nekobato/dokiaudio

Last synced: about 13 hours ago
JSON representation

Play Web Audio as Streaming Sound

Awesome Lists containing this project

README

        

Doki
====

Play Web Audio as Flash's Streaming Sound

## Usage

```

<audio id="doki">
<source src="play.mp3" />
<source src="play.ogg" />
</audio>

<script>
doki = new dokiAudio(document.getElementById("doki"), {debug: true});

doki.on(30, function() {
console.log('30 sec');
});

doki.play();

```