Greetings to everyone
I am using Qtmultimedia 5.0 to record and capture video from webcam. The example provided by Qt helped me very much. I could record and stop the captured video using the following code.
Camera {
id: camera
}
Rectangle{
Text{
text: qsTr("Record")
}
MouseArea{
onClicked: camera.videoRecorder.record()
}
}
Rectangle{
Text{
text: qsTr("Stop")
}
MouseArea{
onClicked: camera.stop()
}
}
Camera {
id: camera
}
Rectangle{
Text{
text: qsTr("Record")
}
MouseArea{
onClicked: camera.videoRecorder.record()
}
}
Rectangle{
Text{
text: qsTr("Stop")
}
MouseArea{
onClicked: camera.stop()
}
}
To copy to clipboard, switch view to plain text mode
Now i need the pause and resume the webcam video. Is there any function to do that job. If I resume the video it should append to the opened file.
Bookmarks