how to stream the video capture of WEB RTC WOWZA in VLC or PYTHON OPENCV ,

777 Views Asked by At

i used Wowza Streaming Engine for stream the camera of my drone using RTMP protocol , and i Convert RTMP to WebRTC With Wowza Streaming Engine (with UDP protocol ) to reduce the Latency , this step work perfectly ,you can see it in this IMAGE

Now i want to show this screen video of WebRTC with python language using opencv : like that

cap = cv2.VideoCapture('the URL of WebRTC')

how can be get the URL of WebRTC ???

Please i need your help .

1

There are 1 best solutions below

2
akaykay On

I would recommend taking a look at aiortc library. You'll need something to create Python bindings to WebRTC unless you want to do that yourself. I have not used this library myself, but it appears to give you what you are looking for. Many other libraries only cover audio, not video.