Qt 6.11 is out! See what's new in the release
blog
Reading MediaDataStream by HTTP
General and Desktop
3
Posts
2
Posters
2.6k
Views
1
Watching
-
My task is to develop a program with qt3 C++ which can do a http-request on url like "http://blabla.bla/smth.cgi?param1=value1¶m2=value2..."
After this, server gives me a real-time video stream from remote IP-camera.
I make http-request using QHttp class. (QHttp::get())
But how can parse bytes from QByteArray in real time. I must get this bytes and convert to video an show it in program.
Help me please with this question.