Try to set my camera fps to 60
Unsolved
General and Desktop
-
Hello,
I try to create a little software to see my webcam and record them.
My camera is a OBSBOT meet 2 and this camera can record to 1920*1080 at 60fps.
But in my software, the video is in 1920*1080 but at 30 FPS and same FPS when I record.
I've miss something?
// Recherche de la caméra spécifiée for (const QCameraDevice &cameraDevice : cameras) { if (cameraDevice.description() == "OBSBOT Meet 2 StreamCamera") { camera = new QCamera(cameraDevice); // Parcourir les formats pour trouver 1920x1080 à 60 FPS const QList<QCameraFormat> formats = cameraDevice.videoFormats(); bool formatFound = false; for (const QCameraFormat &format : formats) { if (format.resolution() == QSize(1920, 1080) && format.minFrameRate() >= 60.0) { camera->setCameraFormat(format); qDebug() << "Format appliqué : 1920x1080 à 60 FPS"; formatFound = true; break; } } if (!formatFound) { qDebug() << "Format 1920x1080 à 60 FPS non trouvé. Utilisation du format par défaut."; } // Configurer la session de capture captureSession.setCamera(camera); captureSession.setVideoOutput(ui->videoWidget); // Initialiser l'enregistreur mediaRecorder = new QMediaRecorder; captureSession.setRecorder(mediaRecorder); // Définir le taux d'images par seconde dans les paramètres de l'enregistreur QMediaRecorder::Quality quality = QMediaRecorder::VeryHighQuality; mediaRecorder->setQuality(quality); qDebug() << "Qualité d'enregistrement définie : Très haute"; // Démarrer la caméra camera->start(); qDebug() << "Camera démarrée avec la résolution et fréquence définies."; break; } }
-
Hi and welcome to devnet,
Which version of Qt ?
On which OS ? -
Hi,
Qt 6.8 on Windows 11
-
What formats do you get from Qt Multimedia ?