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?
source
share