bigbluebutton-Github/bigbluebutton-client/resources/prod/lib/bbb_api_cam_preview.js

45 lines
1.3 KiB
JavaScript
Raw Normal View History

(function(window, undefined) {
var CAM_PREVIEW = {};
/**
* Internal function to get the BBB embed object. Seems like we have to do this
* each time and can't create a var for it.
*
* To get the object, see https://code.google.com/p/swfobject/wiki/api
*/
function getSwfObj() {
return swfobject.getObjectById("WebcamPreviewStandalone");
}
/**
* Preview user's webcam.
*/
2012-12-15 04:03:30 +08:00
CAM_PREVIEW.previewCamera = function(camIndex, camWidth, camHeight,
camKeyFrameInterval, camModeFps,
camQualityBandwidth, camQualityPicture, avatarURL) {
2012-12-15 04:03:30 +08:00
console.log("CAM_PREVIEW::previewCamera [" + camIndex + "]");
var swfObj = getSwfObj();
if (swfObj) {
2012-12-15 04:03:30 +08:00
swfObj.startPreviewCamera(camIndex, camWidth, camHeight, camKeyFrameInterval, camModeFps,
camQualityBandwidth, camQualityPicture, avatarURL);
}
}
/**
* Stop previewing user's webcam.
*/
CAM_PREVIEW.stopPreviewCamera = function(avatarURL) {
var swfObj = getSwfObj();
if (swfObj) {
swfObj.stopPreviewCamera(avatarURL);
}
}
2012-12-15 04:03:30 +08:00
console.log("CAM_PREVIEW INITIALIZED");
window.CAM_PREVIEW = CAM_PREVIEW;
})(this);