Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are the RTP Libraries in Python with good RTCP Support? [closed]

I am looking for a RTP/RTCP Library that is open source. I plan to use Python.

like image 377
KGA Avatar asked Oct 12 '22 01:10

KGA


1 Answers

GStreamer. Open source multimedia framework

This is a good framework for doing RTP in. It is widely used on a number of platforms and has bindings in many different languages.

Here is a link to the python bindings of GStreamer

Advantages to using GStreamer:

  • Cross Platform
  • Cross Language
  • Comprehensive and simple API
  • Good documentation
  • Supports almost all multimedia formats.

Disadvantages:

  • Adds a dependency
  • Adds learning requirements to the project
like image 95
Jakob Bowyer Avatar answered Oct 14 '22 20:10

Jakob Bowyer