2

我有同样的问题,比如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 注释掉该行,一切正常。

有人有想法吗?

4

1 回答 1

2

我认为问题在于:当媒体播放器发出SIGNALSLOT调用时,当您setValue在函数内部使用时,再次setValue发出SIGNAL,并且该过程再次发生。

为了解决这个问题,我禁用了滑块跟踪并使用setSliderPosition.

例子:

slider->setTracking(false);
slider->setSliderPosition(pos);
于 2015-03-18T15:29:14.697 回答