How to do IP Camera Live Streaming video Recording in Qt Quick
-
Hi Everyone,
I'm trying to develop Qt Quick application for access(play, pause and stop) the IP Camera and Recording the video from IP Camera.
In this first step, I can able to stream my IP camera visual in live using qml.
Next I have to do video recording on live streaming from IP camera.
How to do this? Any idea for this? -
@martiny said in How to do IP Camera Live Streaming video Recording in Qt Quick:
How to do this? Any idea for this?
-
Hi @jsulm,
I'm using this code to stream my IP Camera video and it's working fine. Here i'm not using direct camera from device instead I'm using IP Camera. So, I can't able to access CameraRecorder in my Qml.
Is there any other option for IP Camera live stream video recording.MediaPlayer {
id: videoPlayer
source: "rtsp://192.168.2.119/554"
muted: true
autoPlay: true
autoLoad: tru
}VideoOutput
{
id: camera1
width: 1920
height: 1080
anchors.fill:parent
source: videoPlayer
}