Media Codecs SIP API

I am trying to develop an Android application with a SIP interface (in Android 2.3 or higher). I want to know which audio codecs and video codecs support this API? Does this API have any tools to configure / select codecs? please help me.

+2
source share
1 answer

I want to know which audio codecs and video codecs support this API?

You can get a list of supported codecs from the documents themselves, check AudioCodec .

It:

  • PCMU
  • PCMA
  • GSM_EFR
  • GSM
  • Amr

Does this API have any tools to configure / select codecs?

API, SIP RTP. android.net.rtp AudioStream, AudioGroup AudioCodec, . , .

, :

AudioCodec codec = AudioCodec.getCodec(100, "AMR/8000", "mode-set=1");

AudioStream setCodec(codec).

0

Source: https://habr.com/ru/post/1651573/


All Articles