You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
150 lines
4.6 KiB
150 lines
4.6 KiB
/*****************************************************************************
|
|
* Copyright (C) 2019 VLC authors and VideoLAN
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* ( at your option ) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
|
|
#ifndef MLVIDEO_H
|
|
#define MLVIDEO_H
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "qt.hpp"
|
|
|
|
#include <QObject>
|
|
#include <vlc_media_library.h>
|
|
#include "mlhelper.hpp"
|
|
#include "mlqmltypes.hpp"
|
|
|
|
#include <functional>
|
|
|
|
class VideoDescription : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QString codec READ getCodec CONSTANT)
|
|
Q_PROPERTY(QString language READ getLanguage CONSTANT)
|
|
Q_PROPERTY(unsigned int fps READ getFps CONSTANT)
|
|
|
|
public:
|
|
VideoDescription(const QString& codec, const QString& language, unsigned int fps, QObject *parent = nullptr);
|
|
|
|
QString getCodec() const;
|
|
QString getLanguage() const;
|
|
unsigned int getFps() const;
|
|
|
|
private:
|
|
|
|
QString m_codec;
|
|
QString m_language;
|
|
unsigned int m_fps;
|
|
};
|
|
|
|
class AudioDescription : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QString codec READ getCodec CONSTANT)
|
|
Q_PROPERTY(QString language READ getLanguage CONSTANT)
|
|
Q_PROPERTY(unsigned int nbchannels READ getNbChannels CONSTANT)
|
|
Q_PROPERTY(unsigned int sampleRate READ getSampleRate CONSTANT)
|
|
|
|
public:
|
|
AudioDescription(const QString& codec, const QString& language, unsigned int nbChannels, unsigned int sampleRate, QObject *parent = nullptr);
|
|
|
|
QString getCodec() const;
|
|
QString getLanguage() const;
|
|
unsigned int getNbChannels() const;
|
|
unsigned int getSampleRate() const;
|
|
|
|
private:
|
|
|
|
QString m_codec;
|
|
QString m_language;
|
|
unsigned int m_nbchannels;
|
|
unsigned int m_sampleRate;
|
|
};
|
|
|
|
class MLVideo : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(MLParentId id READ getId CONSTANT);
|
|
Q_PROPERTY(QString title READ getTitle CONSTANT);
|
|
Q_PROPERTY(QString thumbnail READ getThumbnail NOTIFY onThumbnailChanged);
|
|
Q_PROPERTY(QString duration READ getDuration CONSTANT);
|
|
Q_PROPERTY(QString durationShort READ getDurationShort CONSTANT);
|
|
Q_PROPERTY(QString mrl READ getMRL CONSTANT);
|
|
Q_PROPERTY(QString displayMrl READ getDisplayMRL CONSTANT)
|
|
Q_PROPERTY(float progress READ getProgress CONSTANT);
|
|
Q_PROPERTY(unsigned int playCount READ getPlayCount CONSTANT);
|
|
Q_PROPERTY(QString resolution_name READ getResolutionName CONSTANT);
|
|
Q_PROPERTY(QString channel READ getChannel CONSTANT);
|
|
Q_PROPERTY(QString progressTime READ getProgressTime CONSTANT);
|
|
Q_PROPERTY(QObjectList audioDesc READ getAudioDesc CONSTANT);
|
|
Q_PROPERTY(QObjectList videoDesc READ getVideoDesc CONSTANT);
|
|
|
|
public:
|
|
MLVideo(vlc_medialibrary_t *ml, const vlc_ml_media_t *data, QObject *parent = nullptr);
|
|
|
|
MLParentId getId() const;
|
|
QString getTitle() const;
|
|
QString getThumbnail();
|
|
QString getDuration() const;
|
|
QString getDurationShort() const;
|
|
QString getResolutionName() const;
|
|
QString getChannel() const;
|
|
QString getMRL() const;
|
|
QString getDisplayMRL() const;
|
|
float getProgress() const;
|
|
unsigned int getPlayCount() const;
|
|
QString getProgressTime() const;
|
|
QObjectList getAudioDesc() const;
|
|
QObjectList getVideoDesc() const;
|
|
|
|
MLVideo* clone(QObject* parent = nullptr) const;
|
|
|
|
signals:
|
|
void onThumbnailChanged( QString );
|
|
|
|
private:
|
|
MLVideo(const MLVideo& video, QObject* parent = nullptr);
|
|
|
|
static void onMlEvent( void* data, const vlc_ml_event_t* event );
|
|
void onMlEvent( const vlc_ml_event_t* event );
|
|
|
|
|
|
vlc_medialibrary_t* m_ml;
|
|
MLParentId m_id;
|
|
QString m_title;
|
|
QString m_thumbnail;
|
|
int64_t m_duration;
|
|
QUrl m_mrl;
|
|
QString m_resolution;
|
|
QString m_channel;
|
|
float m_progress;
|
|
QString m_progressTime;
|
|
unsigned int m_playCount;
|
|
vlc_ml_thumbnail_status_t m_thumbnailStatus;
|
|
QObjectList m_audioDesc;
|
|
QObjectList m_videoDesc;
|
|
|
|
std::unique_ptr<vlc_ml_event_callback_t,
|
|
std::function<void(vlc_ml_event_callback_t*)>> m_ml_event_handle;
|
|
};
|
|
|
|
#endif // MLVIDEO_H
|
|
|