Hello,
Currently i am using LibAv to stream video frames from an RTMP server in C++. It seems to work, but it means i cannot develop my application easily in C#.
I am very impressed with what Wowza can do, but so far, i am unable to find a suitable code client.
How can i stream a frame so that in C++ or C# i end up with a video frame.
Essentially i would like to do the following…
Client client = new Client(url);
client.connect();
while(client.notEnd())
{
Image img = client.getCurrentFrame();
//HERE WE CAN MANIPULATE THE IMAGE AND THEN SAVE
}
-
How can we achieve this in C# or C++?
-
Does the proposed solution work with Wowza Media Server?