其他分享
首页 > 其他分享> > 播放器实战26 添加滑动条与窗口最大化

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

作者:互联网

1.添加positioning在这里插入图片描述
2.添加控件,修改名称,修改最大值提升精度
在这里插入图片描述
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)

标签:播放器,控件,26,double,Xplay2,添加,滑动,dt,pts
来源: https://blog.csdn.net/qq_42567607/article/details/123193897