aiortsp icon indicating copy to clipboard operation
aiortsp copied to clipboard

An Asyncio-based RTSP library

Results 12 aiortsp issues
Sort by recently updated
recently updated
newest added

Hey @RouquinBlanc, thank you for this nice library. **disclaimer**: I started learning RTSP last week, so please forgive any stupid mistakes. I needed to support video and audio (or just...

Dear, I would like to experiment with this library to replace my current approach to read streams (the OpenCV VideoCapture). However, I'm not completely familiar with how to decode the...

documentation

**env** google colab **code** ``` import asyncio from aiortsp.rtsp.reader import RTSPReader import logging url = 'rtsp://77.222.181.11:8080/mjpg/video.mjpg' # aspect ratio = 8:5 async def main(): # Open a reader (which means...

Looks like currently have no way to send anything else in `setup` but base on that http://www.happytimesoft.com/knowledge/audio-back-channel.html we should add `Require:` and some other things.

enhancement

It would be nice to update the broken links at README

I needed to get RTSP with multiple media streams working in native Python so I made an attempt to extend this library with that functionality. Works well in my implementation...

I see you have nicely documented the methods/classes and used typing. It would be great to generate a documentation for this project, e.g. with Sphinx, pdoc, …

documentation

Travis CI does not work anymore. Let's try to switch to github actions

CI

There are some remaining tasks not properly cleaned up. To be fixed, especially to see if this is poor UT or a real issue

cleanup

Currently play request supports either nothing (from now), or a starting date. It would make sense to add also a finish date. This is mostly helpful when talking to NVRs.

enhancement