Question

I want to be able to create an application that can read and publish an RTMP stream.

Using OpenCV i could read rtp due to it's ffmpeg backend.

Stream video from ffmpeg and capture with OpenCV

C++ RTMP is another possibility, but this is an RTMP server so it mainly requests and sends files. Although open source, i am unsure how to build or integrate this into a Visual Studio application in such a way as to make the function calls available to my project.

OTher sources indicate that OpenCV's RTSP isn't great.

http://workingwithcomputervision.blogspot.co.nz/2012/06/issues-with-opencv-and-rtsp.html

How can you run a streaming server, such as RTMP C++ and get the raw data out. OpenCV can encode and decode image data for streaming, but how can you link the two?

Could a C++ application pipe a stream together? How could i interface with that stream to send it more images? Also, for receiving images?

Regards,

Was it helpful?

Solution

cRMTPServer and LibRTMP works well.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top