Questions tagged [tokbox]

TokBox provides a free API that allows anyone to add group video chat features to their own websites

TokBox provides a free API that allows anyone to add group video chat features to their own websites. Experienced programmers use the OpenTok API to build custom interactive video chat applications. More casual users can download OpenTok plug-n-play apps that provide the same group video chat capability when users drop them into their personal blogs or websites.

TokBox Website

476 questions
0
votes
1 answer

Error on 'createSession' (OpenTok php sdk)

I have a 'small' problem with OpenTok, making it impossible to use. When I try to create a new session, the system just gets stuck. :( I've pinpoint the problem to a function called 'createSession', at '/OpenTok/Util/Client.php'. This is the…
Amit Sheen
  • 249
  • 1
  • 7
0
votes
2 answers

Opentok livestreaming broadcast request error

When I make a request to start live streaming broadcast to opentok api, I have this error : { "message" : "session cannot be broadcasted when mantis not available. with code 400" } In below my request term with postman : url…
Fanga
  • 67
  • 1
  • 7
0
votes
2 answers

OPENTOK REST API doesn't work

[EDIT] The description of my post was bad, sorry for my English, I start again. What I mean is when I make a request ajax rest to api opentok from localhost, I have this error: Failed to load https://api.opentok.com/v2/project//broadcast: Response…
Fanga
  • 67
  • 1
  • 7
0
votes
2 answers

Stream pdf or image using tokbox api

I want to stream pdf, ppt, image file from publisher to all subscriber using tokbox api. Is it possible to do that ? if any one know about it please share your knowledge . Thanks
Jake
  • 103
  • 6
0
votes
1 answer

Invalid token format

I am trying to create a session using OpenTok API in my Web App. And I'm getting the following Error. Request : https://api.opentok.com/session/create Method: POST Headers: Accept:application/json Headers: X-OPENTOK-AUTH :{"iss":"
0
votes
0 answers

Setting OpenTok resolution and framerate

I'm using the OpenTok Android SDK and I'm trying to set the camera resolution to low to save on bandwidth. I've read all of the documentation about this, but it's not working as expected. Both the resolution and the frameRate remain the same. …
user300058
  • 21
  • 5
0
votes
1 answer

CallKit - How to bring the CXCallController to the front

I'm creating a VOIP App. Most of the logic is similar to the Raywenderlich Tutorial. My issue is that after accepting the call, the CXCallController is not on top of the App, but next to it in the "task manager": The problem with that is, that once…
David Seek
  • 16,783
  • 19
  • 105
  • 136
0
votes
1 answer

Issue with TokBox Audio Session with CallKit

I have implemented the opentok in my app, and did all necessary implementation which is required. I have been gone through sample code and did exactly same, by calling destination phone, the call reached perfectly, then issues comes. Sometimes call…
Abhishek Mitra
  • 3,335
  • 4
  • 25
  • 46
0
votes
0 answers

Opentok chat is running slowly according I execute session.disconnect() and session.connect()

I am new to the Opentok API and I am writing tests. In my tests I simulated disconnecting from the room and connecting again, but if I execute it at various times, the chat is runs slowly, until broken. To init the chat I run $scope.initSession()…
0
votes
1 answer

Opentok publisher bitrate is dependent on subscribers' bitrate

Below is my pre-call test results: Expected Call Quality 1.7 / 5.0 Supported Resolution: 1280x720 @ 30 fps. 0% video packet loss. Video Bitrate: 655kbps. I am streaming a 200kbps video. And this should be able to stream without any problem. The…
Uday Reddy
  • 1,337
  • 3
  • 16
  • 38
0
votes
1 answer

Downloading/Fetching Client session metadata from tokbox Inspector

Given a session ID or for the last 10 sessions the Inspector tool provides interesting metrics regarding bitrate, packetloss and latency. Is there an existing API or a way in which we can download this information for each session ID? Also would it…
Sudheesh Singanamalla
  • 2,283
  • 3
  • 19
  • 36
0
votes
1 answer

Is it possible to combine OpenTok and regular calls on mobile?

I'm building video chat application. I'm wondering is it possible to make/receive calls during video conversation using OpenTok. The main point is to allow hear each other caller and video companion - some kind of conference. I've read…
0
votes
1 answer

OpenTok/Tokbox Display another page until a suscribe is on

I'm trying to make a "waiting page" until one subscriber get in the call, I tried this:

Waiting

And on the session.suscribe() method I have this: …
elunap
  • 841
  • 3
  • 11
  • 30
0
votes
1 answer

OpenTok based application using both multiparty and broadcasting feature

The application that i m developing is mixture of both multiparty and broadcasting. There will be a single particular admin/host who's stream is subscribed by all the subscribers(Broadcasting). Both the host/publisher as well as all the subscribers…
0
votes
1 answer

BroadCasting an Application using OpenTok

I want to create an android application that broadcasts stream to multiple users. Im using publisher token for both broadcaster and subscribers as i want to see the stream from all the subscribers that have subscribed to the main stream. Since all…