无法使用QMediaPlayer播放电影

时间:2016-12-25 06:00:35

标签: c++ qt qt5 qmediaplayer

我尝试在OS X El Capitan v10.11.6上用Qt5播放电影。 我使用QMediaPlayer,QMediaPlaylist和QVideoWidget来播放。

编写与Qt文档相同的源代码,但它只显示黑色窗口而不播放任何电影。

这是我的源代码。

的main.cpp

#include <QApplication>

#include "mainwindow.h"

int main(int argc, char* argv[])
{
    QApplication app(argc, argv);

    MainWindow mainwindow;
    mainwindow.show();

    return app.exec();
}

mainwindow.h

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QWidget>

class QMediaPlayer;
class QMediaPlaylist;
class QVideoWidget;

class MainWindow : public QWidget
{
    Q_OBJECT

public:
    MainWindow(QWidget* parent = 0);

private:
    QMediaPlayer* player;
    QMediaPlaylist* playlist;
    QVideoWidget* videoWidget;
};

#endif

mainwindow.cpp

#include <QtWidgets>
#include <QMediaPlayer>
#include <QMediaPlaylist>
#include <QVideoWidget>

#include "mainwindow.h"

MainWindow::MainWindow(QWidget* parent)
    : QWidget(parent)
{
    player = new QMediaPlayer;
    playlist = new QMediaPlaylist;
    videoWidget = new QVideoWidget;

    player->setPlaylist(playlist);
    player->setVideoOutput(videoWidget);

    playlist->addMedia(QUrl::fromLocalFile("box.mp4"));

    videoWidget->show();
    playlist->setCurrentIndex(1);
    player->play();

    QHBoxLayout* mainLayout = new QHBoxLayout;
    mainLayout->addWidget(videoWidget);

    setLayout(mainLayout);
}

我检查&#34; box.mp4&#34;存在于同一目录中。

哪里有问题?我该如何修复源代码来解决这个问题?

1 个答案:

答案 0 :(得分:1)

只需将媒体文件路径修改为mainwindow.cpp中的完整路径。

playlist->addMedia(QUrl::fromLocalFile("box.mp4"));

playlist->addMedia(QUrl::fromLocalFile("/path/to/box.mp4"));