https://github.com/streamer45/facile
Stupidly Simple Audio Streaming Library
https://github.com/streamer45/facile
audio audio-library embeddable streaming web-browser
Last synced: 16 days ago
JSON representation
Stupidly Simple Audio Streaming Library
- Host: GitHub
- URL: https://github.com/streamer45/facile
- Owner: streamer45
- License: mit
- Created: 2016-09-05T15:31:18.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-09-07T09:13:32.000Z (over 9 years ago)
- Last Synced: 2025-08-09T06:00:04.030Z (6 months ago)
- Topics: audio, audio-library, embeddable, streaming, web-browser
- Language: JavaScript
- Homepage: https://facile.audio
- Size: 14.6 KB
- Stars: 16
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Facile.Audio Library
## Introduction
Facile.Audio is an easy to use library for live audio streaming from a web browser.
## How easy?
### Embed
```html
```
### Transmit
```js
var tx = new facile.Tx();
tx.start().then(function(channel) {
console.log('transmitter started');
}).catch(function(e) {
console.log(e);
});
```
### Receive
```js
var rx = new facile.Rx(channel);
rx.start().then(function() {
console.log('receiver started');
}).catch(function(e) {
console.log(e);
});
```
## API
See the [API Reference](https://github.com/FacileAudio/facile/blob/master/API.md).
## FAQ
Visit the [FAQ Section](https://facile.audio/#!/faq).
## Demo
You can find a live demo right on the project [homepage](https://facile.audio).
## Development
### Building the library
```sh
$ npm install
$ npm run build
```
## Supporting Facile.Audio
There are several benefits in supporting the project. Take a look at the [Support section](https://facile.audio/#!/support).
## License
[MIT](http://opensource.org/licenses/MIT)
Copyright © 2016 Claudio Costa