我尝试使用下面的示例代码打开一些 ts 示例文件;代码适用于休闲视频格式,但 ts 文件 qt 无法播放媒体。有没有办法在qt多媒体下播放ts文件我用的代码;
void MainWindow::on_pushButton_clicked()
{
file=QFileDialog::getOpenFileName(this,
tr("Video Dosyası Seç"),
QDir::currentPath(),
tr("Hepisi(*.*)"));
ui->lineEdit->setText(QFile(file).fileName());
}
void MainWindow::on_pushButton_2_clicked()
{
if(file.isNull())
{
QMessageBox::warning(this,
tr("Dosya Seç"),
tr("Dosya Seçilmedi"));
return;
}
player->setMedia(QUrl::fromLocalFile(file));
player->play();
}