Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/nekobato/dokiaudio
- Owner: nekobato
- Created: 2014-10-13T22:00:55.000Z (about 10 years ago)
- Default Branch: gh-pages
- Last Pushed: 2015-06-30T01:10:49.000Z (over 9 years ago)
- Last Synced: 2024-04-10T02:16:07.376Z (7 months ago)
- Language: CSS
- Size: 1.76 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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();
```