OpenShot Library | libopenshot  0.3.2
QtPlayer.h
Go to the documentation of this file.
1 
10 // Copyright (c) 2008-2019 OpenShot Studios, LLC
11 //
12 // SPDX-License-Identifier: LGPL-3.0-or-later
13 
14 #ifndef OPENSHOT_QT_PLAYER_H
15 #define OPENSHOT_QT_PLAYER_H
16 
17 #include <iostream>
18 #include <vector>
19 
20 #include "PlayerBase.h"
21 #include "Qt/PlayerPrivate.h"
22 #include "RendererBase.h"
23 
24 namespace openshot
25 {
26  using AudioDeviceList = std::vector<std::pair<std::string, std::string>>;
27 
33  {
35  bool threads_started;
36 
37  public:
39  explicit QtPlayer();
40  explicit QtPlayer(openshot::RendererBase *rb);
41 
43  virtual ~QtPlayer();
44 
46  void CloseAudioDevice();
47 
49  std::string GetError();
50 
52  double GetDefaultSampleRate();
53 
56 
59 
61  void Play();
62 
64  void Loading();
65 
68 
70  void Pause();
71 
73  int64_t Position();
74 
76  void Seek(int64_t new_frame);
77 
79  void SetSource(const std::string &source);
80 
82  void SetTimelineSource(const std::string &json);
83 
87  void SetQWidget(int64_t qwidget_address);
88 
90  int64_t GetRendererQObject();
91 
93  float Speed();
94 
96  void Speed(float new_speed);
97 
99  void Stop();
100 
102  void Reader(openshot::ReaderBase *new_reader);
103 
106 
108  float Volume();
109 
111  void Volume(float new_volume);
112  };
113 }
114 
115 #endif
openshot::QtPlayer::QtPlayer
QtPlayer()
Default constructor.
Definition: QtPlayer.cpp:29
openshot::AudioDeviceInfo
This struct hold information about Audio Devices.
Definition: AudioDevices.h:26
openshot::AudioDeviceList
std::vector< std::pair< std::string, std::string > > AudioDeviceList
Definition: AudioDevices.h:42
openshot::QtPlayer::Seek
void Seek(int64_t new_frame)
Seek to a specific frame in the player.
Definition: QtPlayer.cpp:166
openshot::QtPlayer::GetDefaultSampleRate
double GetDefaultSampleRate()
Return the default audio sample rate (from the system)
Definition: QtPlayer.cpp:66
openshot::QtPlayer::GetRendererQObject
int64_t GetRendererQObject()
Get the Renderer pointer address (for Python to cast back into a QObject)
Definition: QtPlayer.cpp:221
openshot
This namespace is the default namespace for all code in the openshot library.
Definition: Compressor.h:28
openshot::QtPlayer::GetAudioDeviceNames
AudioDeviceList GetAudioDeviceNames()
Get Audio Devices from JUCE.
Definition: QtPlayer.cpp:75
openshot::QtPlayer::Speed
float Speed()
Get the Playback speed.
Definition: QtPlayer.cpp:226
openshot::QtPlayer::Mode
openshot::PlaybackMode Mode()
Get the current mode.
Definition: QtPlayer.cpp:150
openshot::QtPlayer::SetQWidget
void SetQWidget(int64_t qwidget_address)
Definition: QtPlayer.cpp:215
openshot::QtPlayer::Position
int64_t Position()
Get the current frame number being played.
Definition: QtPlayer.cpp:161
openshot::QtPlayer::~QtPlayer
virtual ~QtPlayer()
Default destructor.
Definition: QtPlayer.cpp:42
PlayerBase.h
Header file for PlayerBase class.
openshot::QtPlayer::GetError
std::string GetError()
Get Error (if any)
Definition: QtPlayer.cpp:57
openshot::QtPlayer::Pause
void Pause()
Pause the video.
Definition: QtPlayer.cpp:155
openshot::QtPlayer::GetCurrentAudioDevice
AudioDeviceInfo GetCurrentAudioDevice()
Get current audio device or last attempted.
Definition: QtPlayer.cpp:81
AudioDeviceList
std::vector< std::pair< std::string, std::string > > AudioDeviceList
Definition: AudioDevices.cpp:18
openshot::PlayerPrivate
The private part of QtPlayer class, which contains an audio thread and video thread,...
Definition: PlayerPrivate.h:30
openshot::QtPlayer::SetTimelineSource
void SetTimelineSource(const std::string &json)
Set the source JSON of an openshot::Timelime.
Definition: QtPlayer.cpp:86
openshot::QtPlayer::Volume
float Volume()
Get the Volume.
Definition: QtPlayer.cpp:241
openshot::PlaybackMode
PlaybackMode
This enumeration determines the mode of the video player (i.e. playing, paused, etc....
Definition: PlayerBase.h:26
PlayerPrivate.h
Source file for PlayerPrivate class.
openshot::QtPlayer
This class is used to playback a video from a reader.
Definition: QtPlayer.h:32
openshot::QtPlayer::Reader
openshot::ReaderBase * Reader()
Get the current reader, such as a FFmpegReader.
Definition: QtPlayer.cpp:210
openshot::RendererBase
This is the base class of all Renderers in libopenshot.
Definition: RendererBase.h:30
openshot::QtPlayer::CloseAudioDevice
void CloseAudioDevice()
Close audio device.
Definition: QtPlayer.cpp:50
openshot::PlayerBase
This is the base class of all Players in libopenshot.
Definition: PlayerBase.h:41
openshot::ReaderBase
This abstract class is the base class, used by all readers in libopenshot.
Definition: ReaderBase.h:75
openshot::QtPlayer::Play
void Play()
Play the video.
Definition: QtPlayer.cpp:131
openshot::QtPlayer::Stop
void Stop()
Stop the video player and clear the cached frames.
Definition: QtPlayer.cpp:181
RendererBase.h
Header file for RendererBase class.
openshot::QtPlayer::SetSource
void SetSource(const std::string &source)
Set the source URL/path of this player (which will create an internal Reader)
Definition: QtPlayer.cpp:99
openshot::QtPlayer::Loading
void Loading()
Display a loading animation.
Definition: QtPlayer.cpp:144