Use Agora SDK to develop React Native video call App

In the application of React Native, it is very complicated to add video call function from scratch. To ensure low latency and load balancing, we should also pay attention to managing user event status, which is very cumbersome. In addition, cross platform compatibility must be ensured. Of course, there is a simple way to do this. In this tutor ...

Added by bgoulette612 on Fri, 04 Mar 2022 00:17:28 +0200

Flutter screen acquisition and actual combat sharing

1, OverviewScreen sharing is the most common function in video conferences, online classes, live games and other scenes. Screen sharing is the real-time sharing of screen images. There are several main end-to-end steps: screen recording and acquisition, video coding and packaging, real-time transmission, video unpacking and decoding, and video ...

Added by xxATOMxx on Tue, 15 Feb 2022 09:25:49 +0200

Nuclear rtc drive analysis

Reference: weidongshan second classic video tutorial 1. Analysis of rtc kernel driver The RTC driver in linux kernel is located under drivers/rtc. There are RTC drivers of many development platforms. S3C24xx is the main driver here, so its RTC driver is rtc-s3c c 1.1 ./drivers/rtc/rtc-s3c.c First, enter the entry function, where a S3C2410 R ...

Added by reub77 on Tue, 04 Jan 2022 16:19:06 +0200

Persistent packet loss statistics in rtcp

brief introduction In the rr (receiver report) packet of rtcp, there are two fields, fraction lost and cumulative number of packets lost, which are used to indicate the packet loss rate and the total number of packets lost. This article will introduce the definition of these two values and the implementation in the chrome kernel. cause T ...

Added by nitram on Tue, 04 Jan 2022 07:43:27 +0200