CameraRecorderThe CameraRecorder type controls video recording with the Camera. More... Inherits QtObject Properties
Methods
Detailed DescriptionCameraRecorder allows recording camera streams to files, and adjusting recording settings and metadata for videos. It should not be constructed separately, instead the videRecorder property of a Camera should be used. Camera { videoRecorder.audioEncodingMode: CameraRecorder.ConstantBitrateEncoding; videoRecorder.audioBitRate: 128000 videoRecorder.mediaContainer: "mp4" // ... } There are many different settings for each part of the recording process (audio, video, and output formats), as well as control over muting and where to store the output file. See also QAudioEncoderSettings and QVideoEncoderSettings. Property DocumentationThe audio bit rate to use when recording video, in bits per second. The number of audio channels to encode when recording video (1 is mono, 2 is stereo). The audio codec to use for recording video. Typically this is something like aac or amr-wb. See also whileBalanceMode. The type of encoding method to use when recording audio.
The audio sample rate to encode audio at, when recording video. The video frame dimensions to use when capturing video. The current error code, if any.
The video framerate to use when recording video, in frames per second. The media container to use for recording video. Typically this is something like mp4. The current state of the camera recorder object.
The actual current status of media recording.
The video bit rate to use when recording video, in bits per second. The video codec to use for recording video. Typically this is something like h264. The type of encoding method to use when recording video.
Method DocumentationSets metadata for the next video to be recorder, with the given key being associated with value. |