Reputation: 5
I want to push the live stream to the media server ( specifically Oven Media Engine ) from browser ( use API webrtc ) but haven't found the right way to do it , I just need WebRTC .
const servers = {
iceServers: [
{
urls: "turn:127.0.0.1:3478?transport=tcp",
username: "ome",
credential: "airen"
}
]
};
remotePeerConnection = new RTCPeerConnection(servers);
Upvotes: 0
Views: 1381
Reputation: 91
We are AirenSoft, which developed OvenMediaEngine.
Your problem can be easily solved with OvenLiveKit for Web. Also, you can check the sample code by clicking HERE.
Upvotes: 1