rtp

A library for decoding/encoding rtp packets

https://github.com/bbc/rd-apmm-python-lib-rtp

Science Score: 13.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (7.0%) to scientific vocabulary

Keywords

rd-project rd-section-apmm rd-stability-red
Last synced: 11 months ago · JSON representation

Repository

A library for decoding/encoding rtp packets

Basic Info
  • Host: GitHub
  • Owner: bbc
  • License: apache-2.0
  • Language: Python
  • Default Branch: master
  • Homepage:
  • Size: 60.5 KB
Statistics
  • Stars: 16
  • Watchers: 11
  • Forks: 8
  • Open Issues: 0
  • Releases: 0
Topics
rd-project rd-section-apmm rd-stability-red
Created almost 7 years ago · Last pushed over 2 years ago
Metadata Files
Readme License

README.md

rtp

This python library provides a means to decode, encode, and interact with RTP packets. It is intended to be used together with other libraries that decode, encode, and interact with the payload bitstreams. This library does not provide any network functionality.

Installation

bash pip install rtp

Example usage

```python from rtp import RTP, Extension, PayloadType from copy import deepcopy

baseRTP = RTP( marker=True, payloadType=PayloadType.L16_2chan, extension=Extension( startBits=getExtStartBits(), headerExtension=getExtBody() ), csrcList=getCSRCList() ) thisRTPBitstream = thisRTP.toBytearray()

while runing: nextRTP = deepcopy(baseRTP) nextRTP.sequenceNumber += 1 nextRTP.timestamp = getNextTimestamp() nextRTP.payload = getNextPayload()

transmit(nextRTP)

```

```python from rtp import RTP

decodedPayload = MyPayloadDecoder( RTP().fromBytearray(getNextPacket()).payload)

render(decodedPayload) ```

Contributing

We desire that contributors of pull requests have signed, and submitted via email, a Contributor Licence Agreement (CLA), which is based on the Apache CLA.

The purpose of this agreement is to clearly define the terms under which intellectual property has been contributed to the BBC and thereby allow us to defend the project should there be a legal dispute regarding the software at some future time.

If you haven't signed and emailed the agreement yet then the project owners will contact you using the contact info with the pull request.

License

See LICENSE.

Authors

  • James Sandford

For further information, contact cloudfit-opensource@rd.bbc.co.uk

Owner

  • Name: BBC
  • Login: bbc
  • Kind: organization
  • Location: London

Open source code used on public facing services, internal services and educational resources.

GitHub Events

Total
  • Watch event: 3
Last Year
  • Watch event: 3

Committers

Last synced: almost 3 years ago

All Time
  • Total Commits: 30
  • Total Committers: 3
  • Avg Commits per committer: 10.0
  • Development Distribution Score (DDS): 0.1
Past Year
  • Commits: 3
  • Committers: 2
  • Avg Commits per committer: 1.5
  • Development Distribution Score (DDS): 0.333
Top Committers
Name Email Commits
James Sandford j****d@b****k 27
Sam Mesterton-Gibbons s****s@b****k 2
fleaz m****l@f****e 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 11 months ago

All Time
  • Total issues: 1
  • Total pull requests: 10
  • Average time to close issues: 3 months
  • Average time to close pull requests: 1 day
  • Total issue authors: 1
  • Total pull request authors: 3
  • Average comments per issue: 3.0
  • Average comments per pull request: 0.4
  • Merged pull requests: 10
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • tdmb (1)
Pull Request Authors
  • j616 (8)
  • fleaz (1)
  • samdbmg (1)
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • pypi 196,918 last-month
  • Total dependent packages: 2
  • Total dependent repositories: 1
  • Total versions: 5
  • Total maintainers: 1
pypi.org: rtp

A library for decoding/encoding rtp packets

  • Versions: 5
  • Dependent Packages: 2
  • Dependent Repositories: 1
  • Downloads: 196,918 Last month
Rankings
Downloads: 1.4%
Dependent packages count: 3.2%
Average: 10.8%
Forks count: 11.9%
Stargazers count: 16.1%
Dependent repos count: 21.6%
Maintainers (1)
Last synced: 11 months ago

Dependencies

setup.py pypi
.github/workflows/ci-workflow.yml actions
  • actions/checkout v4 composite
  • actions/setup-python v4 composite
.github/workflows/release-workflow.yml actions
  • actions/checkout v4 composite
  • actions/setup-python v4 composite
  • pypa/gh-action-pypi-publish b7f401de30cb6434a1e19f805ff006643653240e composite