Jeheon Han
Jeheon Han
Finally, ABR is available for WebRTC. You can test it with the latest master branch. WebRTC ABR only works with the latest OvenPlayer.  Please refer to the manual for...
Added ABR feature for LLHLS in latest master branch.  You can use ABR by adding `` to your OutputProfile like this: ``` bypass_stream ${OriginStreamName} Bypass bypass_video bypass_audio 720 720_video...
Roadmap
OvenMediaEngine's development roadmap will be managed in this issue. This does not mean that they are developed in this order. Because the person in charge of development for each part...
LLHLS is now available in the latest master branch. LLHLS is a low-latency streaming protocol that aims at latency of about 2 to 4 seconds, unlike WebRTC's less than 1...
The AdmissionWebhooks feature has been released in the latest dev branch. AdmissionWebhooks is an HTTP callback that queries the control server to control publishing and playback admission requests. Users can...
OvenMediaEngine works in various server environments. The performance will also depend on the hardware/network performance of the server, as well as various variables such as input video quality and encoding...
We have decided to change the license of OvenMediaEngine from GPLv3 to AGPLv3. Most of the people in the OvenMediaEngine community share their valuable experiences. And it has accumulated and...
We have opened a new demo service. https://space.ovenplayer.com This is a simple video conference service developed using OME's WebRTC Input / WebRTC Output function. This will allow you to test...
OME now has hardware transcoding capabilities. You can try this feature in the latest master branch. Please refer to the manual below for details. https://airensoft.gitbook.io/ovenmediaengine/v/master/transcoding/gpu-usage We welcome all comments, such...
Looking at the RtpPacketizerH265::GeneratePackets function, you can see code like this: ``` if (fragment_len> single_packet_capacity) { PacketizeFu(i); ++i; } else { Packetize Single Nalu(i); ++i; } ``` I think it's...