Streaming Video Out
-
Why wouldn't it be ?
-
What exactly do you want to do ?
-
I need a simple way to send frames from camera over network, while at the same time providing real-time 30FPS camera preview in QML widget.
Simple - means as little coding as possible.
The way I'm trying to do it now is to derive C++ class fromQObject
with"mediaObject"
property expose it as a source forVideoOutput
in QML.
The C++ class would catch the frames and save them into buffer (and sent over network).Unfortunately its impossible (afaik) using just QML, beacuse
imageCapture
object inside Camera does not allow to save frame into buffers (only into files). -
Then QtGStreamer is likely what you want.
-
QCamera is a class to get video stream or images from a camera. The QML VideoOutput type is designed to render video onscreen.