Janus WebRTC Server
janus.conf.meetecho.com
Janus WebRTC Server
1–10 of 65 posts
Re: Janus WebRTC Server
#2http://lup.lub.lu.se/luur/download?func=downloadFile&recordO...
One of the most useful/interesting use cases to me is the ability to have a PTP encrypted stream without having to go through weird IoT PKI hoops.
Ninja edit: If anyone has experience with Janus and/or WebRTC on edge devices I would very much like to talk as I could really use a solid consultant in this realm.
Re: Janus WebRTC Server
#3I found previous submissions, but no comments except https://news.ycombinator.com/item?id=22610510.
Re: Janus WebRTC Server
#4Re: Janus WebRTC Server
#5We use Janus as a WebRTC SFU for projects in the education/gaming sector. Its general purpose approach to WebRTC has been a good foundation to help us build custom solutions.
Re: Janus WebRTC Server
#6Re: Janus WebRTC Server
#7We use Janus as a WebRTC SFU for projects in the education/gaming sector. Its general purpose approach to WebRTC has been a good foundation to help us build custom solutions.
What turn servers do you use?
Oh well, you probably should use the rest api for generating credentials on the fly and think about scaling (depending on your needs).
Re: Janus WebRTC Server
#8We currently use Kurento for the easiness of usage + the Java client, but we have been wondering about other solutions like Janus.
Re: Janus WebRTC Server
#9Does anyone have a link which explains WebRTC technology in a concise way?
Re: Janus WebRTC Server
#10Having to look into this professionally for local/remote streaming solutions and came across this paper in the last couple of weeks which has been a huge help to understanding my use case: http://lup.lub.lu.se/luur/download?func=downloadFile&recordO... One of the most useful/interesting use cases to me is the ability to have a PTP encrypted stream without having to go through weird IoT PKI hoops. Ninja edit: If anyon…
Kurento offers a variety of features apart from WebRTC, but it is more intended to be cloud-deployed as an independent media server, you could think of it as a "proxy/bridge" that distributes media between producers (like RTSP cameras) and consumers (WebRTC clients).
If those features are not needed, for purely WebRTC routing there's also mediasoup, with the same philosophy: N media producers send video to a central server, and the server distributes it to M devices consuming the media.
True peer-to-peer comms (i.e. sending data directly from producers to consumers, without an intermediate centralized server) was a cool thing to aim for by the WebRTC standard, but real-world practical constraints (i.e. bandwidth) put a limit to the usefulness of a truly p2p architecture. You'll find more info about this searching for MCU and SFU.