Streaming camera video data over network [video out]
-
I have requirement to send video data from the camera to network using rtp. How can I do the same using Qt-5.6.2 classes.
I have tested the same using gstreamer (gst-launch). But I have to do the same in my application developed in Qt-5.6.2.
I do not want to use any library like libvlc etc.
-
@gsharma said in Streaming camera video data over network [video out]:
I do not want to use any library like libvlc etc.
QtMultimedia is way beyond being perfect and can really be a pain to work with (IMHO).
So i recommend you to use an external library for this. Like libvlc for example.QtMultimedia isn't designed to do video streaming in a providing manner.
Also it is very depending on the backend and thus on the system your application is running on. So going the libvlc approach is the safest.
You can also use ffmpeg . See this as an starting example (although is a player example - but it gives an idea how to work with the lib). -
Hi,
To add to @raven-worx, there's also the QtGStreamer project that might be of interest.