Live broadcasting and recording software for the web, inspired by OBS. WBS allows broadcasters to record video and audio, create video composites, apply audiovisual effects and eventually output to a broadcast transport (which is not within the scope of this project)... all within the browser.
The UI and functionality of WBS is modeled around Open Broadcasting Software (OBS), but can be easily modified to suit less technical users.
If you've never used similar software:
- Click "+" on scenes.
- Click "+" on sources.
- Select a media device.
- You can then drag and resize that video, or add more videos to make a composite.
- Switch between scenes and active videos by click on them.
- "Start Streaming" emits an output MediaStream that can be used in other modules.
<script src="wbs.js"></script>
<div></div>
<script>
var wbs = new WBS('div') // Element or selector to place the UI
wbs.on('stream', function (stream) {
// fired when user presses "Start Streaming"
// stream is the MediaStream output
})
wbs.on('stopstream', function () {
// fired when the user presses "Stop Streaming"
})
</script>
element
is a HTMLElement or CSS selector string. The display will attempt to fit inside this element.
This constructor must be wrapped in a user gesture like a "click" event listener.
Optional opts
is a configuration object that will override the following defaults:
{
output: {
width: 1200, // resolution of the output stream
height: 900,
fps: 40 // frames per second of the output stream
},
injectStyles: true, // whether to inject the WBS css
inputs: [array of input devices - see below]
}
WBS automatically detects AV devices on the system. However, any method to get a MediaStream can be used as an input. To add your own, put an object inside the opts.inputs
array that has the following format:
{
name: 'Display Name of Device', // Can be anything, but it should be descriptive
getStream: function (callback) {
// This function should call "callback" with the following arguments
callback(err, name, isVideo, stream)
- "err" is any error thrown, null otherwise
- "name" is the name of the device, with the kind (Video/Audio Input/Ouput) in brackets
- "isVideo" is true if the stream will have only video tracks, false if only audio tracks.
- "stream" is the input MediaStream
}
}
Here is an example device:
{
name: 'Video Camera (Video Input)',
hasVideo: true, // false for
getStream: function (callback) {
getusermedia({audio:false, video:true}, function (err, stream) {
callback(err, 'Video Camera', true, stream)
})
}
}
wbs
does not broadcast your video, it simply gives you an output MediaStream to do with as you wish.
You could send it over a WebRTC connection, record it as a file, send to to a proxy RTMP server, pipe it through FFMPEG... anything.
For an example P2P transport using Dat and BeakerBrowser, see wbs-plus-hypercast. (Only works with Beaker Browser.)
Support this project by becoming a sponsor. Your logo will appear here with a link to your website. [Become a sponsor]