Insert WebRTC-enabled web frame in native application

We are going to expand the existing Qt 5-based application to support video / audio chat using WebRTC.

We have already tried using the built-in QtWebkit Qt 5.0.2 widget without success, because getUserMedia () seems to be invisible to JavaScript or not implemented at all. After further research, we found that WebRTC is not currently supported by the latest version of QtWebkit. For example, required libraries such as libjingle are not included.

In confirmation of this, we found on the Internet the following:

Has anyone figured out how to integrate video / audio chat using WebRTC into your own application?

+5
source share
1 answer

Qt is currently switching from webkit to chrome. As far as I know, this new engine will support webrtc from the very beginning. This new project is called QtWebEngine . You can get the current status from here . I already compiled it and it pulls in libjingle and wraps it. Perhaps you should capture the source of QtWebEngine and test with this.

+1
source

All Articles