I am an Android developer Is it possible to compress and modify session codecs programmed with webrtc? I'm going to publish an app for those who do not want to use a lot of internet in online meetings.
Asked
Active
Viewed 313 times
0
-
You want to compress the codec itself? Why do you want to do that? – Lasse V. Karlsen Feb 12 '22 at 11:09
-
The audio and video codecs (opus, VP8, H.264, etc) implemented in WebRTC already do a near-optimal job of compressing the streams WebRTC transmits from device to device. For video, reducing the width-height resolution of the image is the best way to get further reductions. – O. Jones Feb 12 '22 at 11:26
-
@LasseV.Karlsen i want data saver for my app. I came up with this method. Do you suggest another method? – Ahmad Zaer Feb 13 '22 at 11:36
-
@O.Jones It is a good method. Do you suggest a library for this method? – Ahmad Zaer Feb 13 '22 at 11:38
-
Do you know the difference between the codec and the stream it encodes? The codec is the piece of software doing the coding or decoding (hence the name), not the actual stream. – Lasse V. Karlsen Feb 14 '22 at 10:49