Playing *.avi files with Qt
问题 I am trying to play *.avi file (~900MB) with this code: QMediaPlayer* player = new QMediaPlayer(this); player->setMedia(QUrl::fromLocalFile("mes1.avi")); player->setVideoOutput(ui->videoWidget); player->play(); where ui->videoWidget is QVideoWidget and every time I play it I am getting this error code (in Application Output console) Since google doesn't help, this is my only choice... DirectShowPlayerService::doRender: Unresolved error code 0x80040266 (IDispatch error #102) EDIT1: I have