How can I implement Record Start and Record Stop feature in my QT application "Video player"?
-
I have developed a video media player application and want to add two more functionality:
- Record Start- on clicking this, the video which is currently playing on my media player will start recording from that frame.
- Record Stop: On clicking this, the recording will stop and that complete recording will be saved in computer as a video file.
-
Hi,
You can try with QMediaRecorder
-
In QMediaRecorder, I can only see how to record a video using camera. My media player has no camera. I want to record a video which is playing on media player at any instant of time and when I click on "stop recording " the recording should save as a video file. How to do that? Help please.
-
I've checked, there's currently no option to do it directly with Qt Multimedia. You might want to check the QtAV project.