播放器实战26 添加滑动条与窗口最大化

1.添加positioning播放器实战26 添加滑动条与窗口最大化
2.添加控件,修改名称,修改最大值提升精度
播放器实战26 添加滑动条与窗口最大化
3.
在类xplay2中添加

void Xplay2::timerEvent(QTimerEvent* e)
{
	long long total = dt.totalMs;
	qDebug() << "total: " << total << endl;
	if (total > 0)
	{
		//当前解码到的pts除以总pts,是个比例
		double pos = (double)dt.pts / (double)total;
		qDebug()<< "pos: " << pos << endl;
		int v = ui.playPos->maximum() * pos;
		ui.playPos->setValue(v);
	}
}

在xplay的构造函数中添加定时器

Xplay2::Xplay2(QWidget *parent)
    : QWidget(parent)
{
    ui.setupUi(this);
    dt.start();
	startTimer(40);
}

让控件刷新与视频同步(fps=25)

上一篇:案例-使用python实现基于opencv的图像拼接(合并)


下一篇:基于 PTS 压测轻松玩转问题诊断