This is an experimental plugin for bridging the functionality provided by the Temasys IE plugin into the rtc.io module suite.
A simple capture example is shown below:
var capture = require('rtc-capture');
var attach = require('rtc-attach');
var opts = {
plugins: [ require('rtc-plugin-temasys') ]
};
capture({ video: true, audio: true }, opts, function(err, stream) {
if (err) {
return console.error('could not capture stream: ', err);
}
attach(stream, opts, function(err, el) {
if (err) {
return console.error('could not attach stream: ', err);
}
document.body.appendChild(el);
});
});
For a more detailed example (which includes video conferencing, please have a look at our helloworld demo which can be easily modified to use our Temasys plugin layer.
Documented below is an number of plugin functions that are used to both determine plugin suitability for a browser / platform and also ensure that the plugin is correctly loaded into the HTML document.
The supported function returns true if the platform (as detected using
rtc-core/detect
) is compatible with the plugin. By doing this prelimenary
detection you can specify a number of plugins to be loaded but only
the first the is supported on the current platform will be used.
The init
function is reponsible for ensuring that the current HTML
document is prepared correctly.
The prepareElement
function is used to prepare the video container
for receiving a video stream. If the plugin is able to work with
standard <video>
and <audio>
elements then a plugin should simply
not implement this function.
Copyright 2014 National ICT Australia Limited (NICTA)
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.