C++(Qt) code examples that use TrueConf VideoSDK API and TrueConf Room API
- Download TrueConf VideoSDK or TrueConf Room
- Install with default settigs (Port = 80)
- Launch application c -pin parameter in the command line.
Windows:
"C:\Program Files\TrueConf\VideoSDK\VideoSDK.exe" -pin "pin123"
Linux:
$ trueconf-video-sdk -pin "pin123"
- Get your free accounts in https://t.me/TrueConfSDKPromoBot
- Click at the link on the application main screen and open the web-manager
- Connect to the server and login in
Now the application is ready to use
This is the simplest console application that calls the user by TrueConf ID
#include <QCoreApplication>
#include "../videosdk/videosdk.h"
int main(int argc, char *argv[])
{
QCoreApplication a(argc, argv);
VideoSDK sdk;
sdk.open_session("127.0.0.1", "123"); // open a new sesion with Room or VideoSDK
sdk.call("[email protected]"); // call
return a.exec();
}
Just an animated calling button on the bottom right corner of the screen