123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174 |
- #ifndef PLAYERCOMPONENT_H
- #define PLAYERCOMPONENT_H
- #include <QObject>
- #include <QtCore/qglobal.h>
- #include <QVariant>
- #include <QSet>
- #include <QQuickWindow>
- #include <QTimer>
- #include <QTextStream>
- #include "ComponentManager.h"
- #include <mpv/client.h>
- #include <mpv/qthelper.hpp>
- void initD3DDevice(void);
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- class PlayerComponent : public ComponentBase
- {
- Q_OBJECT
- DEFINE_SINGLETON(PlayerComponent);
- public:
- virtual const char* componentName() { return "player"; }
- virtual bool componentExport() { return true; }
- virtual bool componentInitialize();
- virtual void componentPostInitialize();
-
- explicit PlayerComponent(QObject* parent = 0);
- virtual ~PlayerComponent();
- // Deprecated. Corresponds to stop() + queueMedia().
- Q_INVOKABLE bool load(const QString& url, const QVariantMap& options, const QVariantMap& metadata, const QString& audioStream = QString(), const QString& subtitleStream = QString());
- // Append a media item to the internal playlist. If nothing is played yet, the
- // newly appended item will start playing immediately.
- // options:
- // - startMilliseconds: start playback at this time (in ms)
- // - autoplay: if false, start playback paused; if true, start normally
- Q_INVOKABLE void queueMedia(const QString& url, const QVariantMap& options, const QVariantMap &metadata, const QString& audioStream, const QString& subtitleStream);
- // This clears all items queued with queueMedia().
- // It explicitly excludes the currently playing item. The main use of this function
- // is updating the next item that should be played (for the purpose of gapless audio).
- // If you want to wipe everything, use stop().
- Q_INVOKABLE void clearQueue();
- Q_INVOKABLE virtual void seekTo(qint64 milliseconds);
- // Stop playback and clear all queued items.
- Q_INVOKABLE virtual void stop();
- // A full reload of the stream is imminent (stop() + load())
- // Used ofr not resetting display mode with the next stop() call.
- Q_INVOKABLE virtual void streamSwitch();
- Q_INVOKABLE virtual void pause();
- Q_INVOKABLE virtual void play();
-
- /* 0-100 volume 0=mute and 100=normal */
- Q_INVOKABLE virtual void setVolume(quint8 volume);
- Q_INVOKABLE virtual quint8 volume();
- // Returns a QVariant of the following format:
- // QVariantList (list of audio device entries)
- // QVariantMap (an audio device entry)
- // "name" -> QString (symbolic name/ID of the device)
- // "description" -> QString (human readable description intended for display)
- //
- Q_INVOKABLE virtual QVariant getAudioDeviceList();
- // Uses the "name" from the device list.
- Q_INVOKABLE virtual void setAudioDevice(const QString& name);
-
- Q_INVOKABLE virtual void setAudioStream(const QString& audioStream);
- Q_INVOKABLE virtual void setSubtitleStream(const QString& subtitleStream);
- Q_INVOKABLE virtual void setAudioDelay(qint64 milliseconds);
- Q_INVOKABLE virtual void setSubtitleDelay(qint64 milliseconds);
- // If enabled, hide the web view (whether it's OSD or not), and show video
- // only. If no video is running, render a black background only.
- Q_INVOKABLE virtual void setVideoOnlyMode(bool enable);
- Q_INVOKABLE void userCommand(QString command);
- const mpv::qt::Handle getMpvHandle() const { return m_mpv; }
- virtual void setWindow(QQuickWindow* window);
- QString videoInformation() const;
- static QStringList AudioCodecsAll() { return { "ac3", "dts", "eac3", "dts-hd", "truehd" }; };
- static QStringList AudioCodecsSPDIF() { return { "ac3", "dts" }; };
-
- public Q_SLOTS:
- void setAudioConfiguration();
- void updateAudioDeviceList();
- void updateSubtitleSettings();
- void updateVideoSettings();
- private Q_SLOTS:
- void handleMpvEvents();
- void onRestoreDisplay();
- void onRefreshRateChange();
- void onReloadAudio();
- Q_SIGNALS:
- void playing(const QString& url);
- void buffering(float);
- // playback has stopped due to a stop() or loadMedia() request
- void stopped(const QString& url);
- // playback has stopped because the current media was fully played
- void finished(const QString& url);
- // playback has stopped due to any reason - this always happens if the
- // playing() signal was emitted
- void playbackEnded(const QString& url);
- // emitted if playback has ended, and no more items are queued for playback
- void playbackAllDone();
- // emitted after playing(), and as soon as the the media is fully loaded, and
- // playback starts normally
- void playbackStarting();
- void paused(bool paused);
- void windowVisible(bool visible);
- // emitted as soon as the duration of the current file is known
- void updateDuration(qint64 milliseconds);
- // an error happened during playback - this implies abort of playback
- // the id is the (negative) error number, and the message parameter is a short
- // English description of the error (always the same for the same id, no
- // further information)
- void error(int id, const QString& message);
- // current position in ms should be triggered 2 times a second
- // when position updates
- void positionUpdate(quint64);
- void onMpvEvents();
-
- private:
- // this is the function actually implemented in the backends. the variantmap contains
- // a few known keys:
- // * subtitleStreamIndex
- // * subtitleStreamIdentifier
- // * audioStreamIndex
- // * audioStreamIdentifier
- // * viewOffset
- //
- void loadWithOptions(const QVariantMap& options);
- void setRpiWindow(QQuickWindow* window);
- void setQtQuickWindow(QQuickWindow* window);
- void handleMpvEvent(mpv_event *event);
- // Potentially switch the display refresh rate, and return true if the refresh rate
- // was actually changed.
- bool switchDisplayFrameRate();
- void checkCurrentAudioDevice(const QSet<QString>& old_devs, const QSet<QString>& new_devs);
- void appendAudioFormat(QTextStream& info, const QString& property) const;
- mpv::qt::Handle m_mpv;
- double m_lastPositionUpdate;
- qint64 m_playbackAudioDelay;
- QString m_CurrentUrl;
- bool m_playbackStartSent;
- QQuickWindow* m_window;
- float m_mediaFrameRate;
- QTimer m_restoreDisplayTimer;
- QTimer m_reloadAudioTimer;
- QSet<QString> m_audioDevices;
- bool m_streamSwitchImminent;
- };
- #endif // PLAYERCOMPONENT_H
|