OpenShot Library | libopenshot  0.3.0
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 
58  void Play();
59 
61  void Loading();
62 
65 
67  void Pause();
68 
70  int64_t Position();
71 
73  void Seek(int64_t new_frame);
74 
76  void SetSource(const std::string &source);
77 
79  void SetTimelineSource(const std::string &json);
80 
84  void SetQWidget(int64_t qwidget_address);
85 
87  int64_t GetRendererQObject();
88 
90  float Speed();
91 
93  void Speed(float new_speed);
94 
96  void Stop();
97 
99  void Reader(openshot::ReaderBase *new_reader);
100 
103 
105  float Volume();
106 
108  void Volume(float new_volume);
109  };
110 }
111 
112 #endif
std::vector< std::pair< std::string, std::string > > AudioDeviceList
Definition: AudioDevices.h:31
std::vector< std::pair< std::string, std::string > > AudioDeviceList
float Speed()
Get the Playback speed.
Definition: QtPlayer.cpp:221
void Loading()
Display a loading animation.
Definition: QtPlayer.cpp:139
This class is used to playback a video from a reader.
Definition: QtPlayer.h:32
void SetTimelineSource(const std::string &json)
Set the source JSON of an openshot::Timelime.
Definition: QtPlayer.cpp:81
float Volume()
Get the Volume.
Definition: QtPlayer.cpp:236
QtPlayer()
Default constructor.
Definition: QtPlayer.cpp:29
openshot::ReaderBase * Reader()
Get the current reader, such as a FFmpegReader.
Definition: QtPlayer.cpp:205
This abstract class is the base class, used by all readers in libopenshot.
Definition: ReaderBase.h:75
This is the base class of all Players in libopenshot.
Definition: PlayerBase.h:41
void Pause()
Pause the video.
Definition: QtPlayer.cpp:150
void SetSource(const std::string &source)
Set the source URL/path of this player (which will create an internal Reader)
Definition: QtPlayer.cpp:94
AudioDeviceList GetAudioDeviceNames()
Get Audio Devices from JUCE.
Definition: QtPlayer.cpp:75
Source file for PlayerPrivate class.
The private part of QtPlayer class, which contains an audio thread and video thread, and controls the video timing and audio synchronization code.
Definition: PlayerPrivate.h:30
double GetDefaultSampleRate()
Return the default audio sample rate (from the system)
Definition: QtPlayer.cpp:66
std::string GetError()
Get Error (if any)
Definition: QtPlayer.cpp:57
int64_t Position()
Get the current frame number being played.
Definition: QtPlayer.cpp:156
void SetQWidget(int64_t qwidget_address)
Definition: QtPlayer.cpp:210
void Play()
Play the video.
Definition: QtPlayer.cpp:126
void Seek(int64_t new_frame)
Seek to a specific frame in the player.
Definition: QtPlayer.cpp:161
This namespace is the default namespace for all code in the openshot library.
Definition: Compressor.h:28
openshot::PlaybackMode Mode()
Get the current mode.
Definition: QtPlayer.cpp:145
Header file for RendererBase class.
Header file for PlayerBase class.
void CloseAudioDevice()
Close audio device.
Definition: QtPlayer.cpp:50
int64_t GetRendererQObject()
Get the Renderer pointer address (for Python to cast back into a QObject)
Definition: QtPlayer.cpp:216
PlaybackMode
This enumeration determines the mode of the video player (i.e. playing, paused, etc...)
Definition: PlayerBase.h:26
This is the base class of all Renderers in libopenshot.
Definition: RendererBase.h:30
void Stop()
Stop the video player and clear the cached frames.
Definition: QtPlayer.cpp:176
virtual ~QtPlayer()
Default destructor.
Definition: QtPlayer.cpp:42