piyush
piyush

Reputation: 621

Is it possible to do webrtc without browser?

I want to do screencast my server screen using webrtc. However I want to do it without a browser. Is it possible using some node.js libraries ?

Upvotes: 2

Views: 1595

Answers (1)

furkan
furkan

Reputation: 542

Webrtc is used on top of the native api. Modern browsers implement the javascript api on top of the basis native api. Additionally there are webrtc java api's such as this peer_connection api. Here is a getting-started guide to build the necessary jar/so files for using the java api's: https://webrtc.org/start

Coming back to your question: you either have to use modern browsers and take advantage of the javascript api, or implement a java/android application using the java api's. You can try to implement your own native interface that wraps the native api, which does sound scary and unnecessary to me.

Upvotes: 2

Related Questions