我想尋求前的位置:搜尋位置播放視頻前播放視頻
player= new VlcMediaPlayer(instance);
player->setPosition(pos);
player->setTime(time);
player->play();
,但它不工作,而是我用這個代碼:現在
player= new VlcMediaPlayer(instance);
player->play();
player->setPosition(pos);
player->setTime(time);
它作品,但首先播放視頻(並顯示文件開頭的一些幀),有沒有什麼辦法可以在播放之前找到位置?
嘗試在設置位置/時間之前調用'pause()',然後'play()',看看是否有幫助。 –