StreamInfo
{
- text: streamControl.videoSize.width+"×"+streamControl.videoSize.height+" @ "+streamControl.framerate.toFixed(2)+"fps"
+ visible: streamControl.videoSize.width && streamControl.videoSize.height
+ property string size: streamControl.videoSize.width+"×"+streamControl.videoSize.height
+ property string fps: " @ "+streamControl.framerate.toFixed(2)+"fps"
+ text: (streamControl.framerate ? size+fps : size)
}
StreamInfo
{
+ visible: streamControl.videoCodec
text: streamControl.videoCodec
}
StreamInfo
{
+ visible: streamControl.audioCodec
text: streamControl.audioCodec
}
}