RTSP to RTMP with some processing
Hello Pedro, I would like to know if this project would be possible based on your library:
- Connect to 1 (or many) RTSP video source
- Process each frame for AI related stuff (People detection)
- Crop the original video source to a final HD frame
- Overlay external HTML content
- Stream to the internet using RTMP(s) Thank you very much
Step 1 is not possible because you need a player and this library only work as a pusher Step 2 could be possible but really difficult to handle because you need take a frame each X time (you can do it using takePhoto method) and proccess it using other library (it is maybe the problem because you need use openCV and I'm not sure about the performance. The library is not thinking to do it since image proccesing is working with openGL, take frames constantly is a bad idea (the performance for it is slow). Steps 3, 4 and 5 is possible using filters.
I think it is not your library since step 1 is not possible and step 2 could result in a bad performance.