QMediaCaptureSession Class▲
-
Header: QMediaCaptureSession
-
CMake:
find_package(Qt6 REQUIRED COMPONENTS Multimedia)
target_link_libraries(mytarget PRIVATE Qt6::Multimedia)
-
qmake: QT += multimedia
-
Inherited By:
-
Instantiated By: qml-qtmultimedia-capturesession.xml
-
Inherits: QObject
-
Group: QMediaCaptureSession is part of multimedia, multimedia_video, multimedia_audio
Detailed Description▲
The QMediaCaptureSession is the central class that manages capturing of media on the local device.
You can connect a camera and a microphone to QMediaCaptureSession using setCamera() and setAudioInput(). A preview of the captured media can be seen by setting a QVideoSink of QVideoWidget using setVideoOutput() and heard by routing the audio to an output device using setAudioOutput().
You can capture still images from a camera by setting a QImageCapture object on the capture session, and record audio/video using a QMediaRecorder.
See Also▲
See also QCamera, QAudioDevice, QMediaRecorder, QImageCapture, QMediaRecorder
Property Documentation▲
camera : QCamera*▲
This property holds the camera used to capture video.
Record video or take images by adding a camera to the capture session using this property,
Access functions:
-
*camera() const
-
void setCamera( *camera)
Notifier signal:
-
void cameraChanged()
imageCapture : QImageCapture*▲
This property holds the object used to capture still images.
Add a QImageCapture object to the capture session to enable capturing of still images from the camera.
Access functions:
-
*imageCapture()
-
void setImageCapture( *imageCapture)
Notifier signal:
-
void imageCaptureChanged()
recorder : QMediaRecorder*▲
This property holds the recorder object used to capture audio/video.
Add a QMediaRecorder object to the capture session to enable recording of audio and/or video from the capture session.
Access functions:
-
*recorder()
-
void setRecorder( *recorder)
Notifier signal:
-
void recorderChanged()
Member Function Documentation▲
[explicit] QMediaCaptureSession::QMediaCaptureSession(QObject *parent = nullptr)▲
Creates a session for media capture from the parent object.
[virtual] QMediaCaptureSession::~QMediaCaptureSession()▲
Destroys the session.
QAudioInput *QMediaCaptureSession::audioInput() const▲
Returns the device that is being used to capture audio.
Getter function for property audioInput.
See Also▲
See also setAudioInput()
void QMediaCaptureSession::setAudioInput(QAudioInput *input)▲
Sets the audio input device to input. If setting it to an empty QAudioDevice the capture session will use the default input as defined by the operating system.
Setter function for property audioInput.
See Also▲
See also audioInput()
void QMediaCaptureSession::setAudioOutput(QAudioOutput *output)▲
Sets the audio output device to output.
Setter function for property audioOutput.
See Also▲
See also audioOutput()
void QMediaCaptureSession::setVideoOutput(QObject *output)▲
Sets a QObject, (output), to a video preview for the capture session.
A QObject based preview is expected to have an invokable videoSink() method that returns a QVideoSink.
The previously set preview is detached.
Setter function for property videoOutput.
See Also▲
See also videoOutput()
void QMediaCaptureSession::setVideoSink(QVideoSink *sink)▲
Sets a QVideoSink, (sink), to a video preview for the capture session.
A QObject based preview is expected to have an invokable videoSink() method that returns a QVideoSink.
The previously set preview is detached.