OpenTok is a free set of APIs from TokBox that enables websites to weave live group video communication into their online experience. With OpenTok you have the freedom and flexibility to create the most engaging web experience for your users. OpenTok is currently available as a JavaScript and ActionScript 3.0 library. Check out http://www.tokbox.com/ and http://www.tokbox.com/opentok/tools/js/gettingstarted for more information.
This is the OpenTok NodeJS Module.
To install using npm, add OpenTok to package.json
and run npm install
:
"dependencies" : { "opentok" : "0.3.x", ... }
To install as a regular npm package just type npm install opentok
Request your API key and API secret at http://www.tokbox.com/opentok/api/tools/js/apikey.
In order to use any of the server side functions, you must first create an OpenTokSDK
object with your developer credentials.
You must pass in your API key and API secret.
var key = ''; // Replace with your API key var secret = ''; // Replace with your API secret var opentok = new OpenTok.OpenTokSDK(key, secret);
Use your OpenTokSDK
object to create a session_id
. See http://www.tokbox.com/opentok/api/tools/documentation/api/server_side_libraries.html#create_session for more details.
createSession
takes 2-3 parameters:
location [string] - give Opentok a hint on where you are running your application by specifiying an IP (e.g. '127.0.0.1')
properties [object] - OPTIONAL. Set peer to peer asenabled
ordisabled
callback [fn(sessionId)] - This is a function that handles the server response after session has been created. The result sessionId is a string.
Example: P2P disabled (default)
var location = '127.0.0.1'; // use an IP or 'localhost' var sessionId = ''; opentok.createSession(location, function(result){ sessionId = result; // Do things with sessionId });
Example: P2P enabled
var location = '127.0.0.1'; // use an IP of 'localhost' var sessionId = ''; opentok.createSession(location, {'p2p.preference':'enabled'}, function(result){ sessionId = result; });
With the generated session_id and an OpenTokSDK object, you can start generating tokens for each user. See http://www.tokbox.com/opentok/api/tools/documentation/api/server_side_libraries.html#generate_token for more details.
generateToken
takes in an object with 1-4 properties, and RETURNS a token as a string:
session_id [string] - REQUIRED. This token is tied to the session it is generated with
role [string] - OPTIONAL. opentok.RoleConstants.{SUBSCRIBER|PUBLISHER|MODERATOR}. Publisher role used when omitted. expire_time [int] - OPTIONAL. Time when token will expire in unix timestamp. connection_data [string] - OPTIONAL. Stores static metadata to pass to other users connected to the session. (eg. names, user id, etc)
Example:
var token = opentok.generateToken({session_id:session_id, role:OpenTok.RoleConstants.PUBLISHER, connection_data:"userId:42"});
To Download archived video, you must have an Archive ID (from the client), and a moderator token. For more information see http://www.tokbox.com/opentok/api/tools/documentation/api/server_side_libraries.html#download_archive.
Quick Overview of the javascript library: http://www.tokbox.com/opentok/api/tools/js/documentation/api/Session.html#createArchive
- Create an event listener on
archiveCreated
event:session.addEventListener('archiveCreated', archiveCreatedHandler);
- Create an archive:
archive = session.createArchive(...);
- When archive is successfully created
archiveCreatedHandler
would be triggered. An Archive object containingarchiveId
property is passed into your function. Save this in your database, this archiveId is what you use to reference the archive for playbacks and download videos - After your archive has been created, you can start recording videos into it by calling
session.startRecording(archive)
Optionally, you can also use the standalone archiving, which means that each archive would have only 1 video: http://www.tokbox.com/opentok/api/tools/js/documentation/api/RecorderManager.html
With your moderator token and a OpenTokSDK object, you can generate a OpenTokArchive object, which contains information for all videos in the Archive
OpenTokSDK.getArchiveManifest()
takes in 3 parameters: archiveId and moderator token, and a callback function
archive_id [string] - REQUIRED. Get this from the client that created the archive.
token [string] - REQUIRED. Get this from the client or the generate_token method.
handler [fn(tbarchive)] - REQUIRED. This function is triggered after it receives the Archive Manifest. The parameter is anOpenTokArchive
object. The resources property of this object is array ofOpenTokArchiveVideoResource
objects, and eachOpenTokArchiveVideoResource
object represents a video in the archive.
Example: (opentok is an OpentokSDK object)
var token = 'moderator_token'; var archiveId = '5f74aee5-ab3f-421b-b124-ed2a698ee939'; // Obtained from Javascript Library opentok.getArchiveManifest(archiveId, token, function(tbarchive){ var otArchive = tbarchive; });
OpenTokArchive.resources
is an array of OpenTokArchiveVideoResource
objects. OpenTokArchiveVideoResource has a getId()
method that returns the videoId as a string.
Example:
opentok.getArchiveManifest(archiveId, token, function(tbarchive){ var vidID = tbarchive.resources[0].getId(); });
OpenTokArchive
objects have a downloadArchiveURL(video_id, handler)
method that will return a URL string for downloading the video in the archive. Video files are FLV format.
video_id [string] - REQUIRED. The Video ID returned from OpenTokArchiveVideoResource.getId()
handler [fn(url)] - REQUIRED. This function is triggered after it receives the URL for video. The result is a URL string.
Example:
var url = ''; otArchive.downloadArchiveURL(vidID, function(resp){ url = resp; });
Check out the basic working example in examples/app.js
jasmine-node --coffee spec/