https://github.com/bbc/rd-apmm-python-lib-rtp
A library for decoding/encoding rtp packets
https://github.com/bbc/rd-apmm-python-lib-rtp
rd-project rd-section-apmm rd-stability-red
Last synced: 9 months ago
JSON representation
A library for decoding/encoding rtp packets
- Host: GitHub
- URL: https://github.com/bbc/rd-apmm-python-lib-rtp
- Owner: bbc
- License: apache-2.0
- Created: 2019-09-18T13:17:03.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-05T16:59:54.000Z (about 2 years ago)
- Last Synced: 2025-03-22T06:51:14.932Z (9 months ago)
- Topics: rd-project, rd-section-apmm, rd-stability-red
- Language: Python
- Homepage:
- Size: 60.5 KB
- Stars: 15
- Watchers: 11
- Forks: 8
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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)](http://www.bbc.co.uk/opensource/cla/rfc-8759-cla.docx), 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](LICENSE).
## Authors
* James Sandford
For further information, contact