Details
-
Bug
-
Resolution: Done
-
P3: Somewhat important
-
1.2.2
-
5ef1bbe0457c9e5041d76ecb6560a2660b1bc1e5
Description
Using the following code:
QList<QString> lCodecs = m_pMediaRecorder->supportedVideoCodecs();
QString qCodecName1;
foreach( qCodecName1, lCodecs )
{
qDebug() << qCodecName1;
QVideoEncoderSettings qVideoEncoderSettings;
qVideoEncoderSettings.setCodec( qCodecName1 );
QList<QSize> lSizes = m_pMediaRecorder->supportedResolutions( qVideoEncoderSettings );
QSize qSize;
foreach( qSize, lSizes )
qDebug( "\n" );
}
I get the included log file output.
Note there is no supported codec for resolution 1920x1088. Yet codec "video/H264; profile-level-id=644028" lets me record at this resolution @ 30fps just fine.