We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Related to audiojs/audio-loader#7 (comment) and https://github.com/dfcreative/app-audio.
Since we have freesound API, we could write a component reading any URL with optional token and returning arraybuffer with (encoded) data.
Like
let load = require('audio-load'), decode = require('audio-decode'), play = require('audio-play') load('https://www.freesound.org/people/Sirkoto51/sounds/274153/') .then(decode) .then(play)
That would allow for audio to load files easily as well:
let Audio = require('audio') Audio.load('https://www.freesound.org/people/Sirkoto51/sounds/274153/', {token: xxx}).then(audio => audio.play())
APIs we could enable:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Related to audiojs/audio-loader#7 (comment) and https://github.com/dfcreative/app-audio.
Since we have freesound API, we could write a component reading any URL with optional token and returning arraybuffer with (encoded) data.
Like
That would allow for audio to load files easily as well:
APIs we could enable:
The text was updated successfully, but these errors were encountered: