我有同样的问题,比如QMediaPlayer positionChanged()。滑块更新时声音中断
我使用 QMediayPlayer 并且每次发出信号 positionChanged() 来更新我的滑块位置并为滑块设置一个新值时,声音都会中断片刻。
这是在构造函数中:
soundfile = new QMediaPlayer(this, QMediaPlayer::LowLatency); //soundfile is a pointer of a QMediaPlayer Object
QObject::connect(soundfile, SIGNAL(positionChanged(qint64)), this, SLOT(changedPosition(qint64)));
这是插槽功能:
void Soundfile::changedPosition(qint64 p) {
QTime time(0,0,0,0);
time = time.addMSecs(soundfile->position());
if(p != 0) recordSlider->setValue(p); //THIS IS THE LINE, WHERE IT INTERRUPTS
changeRecordTime(QString::number(p));
recordPositionLabel->setText("Aktuelle Zeit: " + time.toString());
}
recordSlider 是一个 QSlider。如果我用 setValue 注释掉该行,一切正常。
有人有想法吗?