OpenShot Library | libopenshot  0.1.1
Timeline.h
Go to the documentation of this file.
1 /**
2  * @file
3  * @brief Header file for Timeline class
4  * @author Jonathan Thomas <jonathan@openshot.org>
5  *
6  * @section LICENSE
7  *
8  * Copyright (c) 2008-2014 OpenShot Studios, LLC
9  * <http://www.openshotstudios.com/>. This file is part of
10  * OpenShot Library (libopenshot), an open-source project dedicated to
11  * delivering high quality video editing and animation solutions to the
12  * world. For more information visit <http://www.openshot.org/>.
13  *
14  * OpenShot Library (libopenshot) is free software: you can redistribute it
15  * and/or modify it under the terms of the GNU Lesser General Public License
16  * as published by the Free Software Foundation, either version 3 of the
17  * License, or (at your option) any later version.
18  *
19  * OpenShot Library (libopenshot) is distributed in the hope that it will be
20  * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22  * GNU Lesser General Public License for more details.
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.
26  */
27 
28 #ifndef OPENSHOT_TIMELINE_H
29 #define OPENSHOT_TIMELINE_H
30 
31 #include <list>
32 #include <tr1/memory>
33 #include <QtGui/QImage>
34 #include <QtGui/QPainter>
35 #include "Cache.h"
36 #include "Color.h"
37 #include "Clip.h"
38 #include "Point.h"
39 #include "EffectBase.h"
40 #include "Effects.h"
41 #include "Fraction.h"
42 #include "Frame.h"
43 #include "FrameMapper.h"
44 #include "KeyFrame.h"
45 #include "OpenMPUtilities.h"
46 #include "ReaderBase.h"
47 
48 using namespace std;
49 using namespace openshot;
50 
51 namespace openshot {
52 
53  /// Comparison method for sorting clip pointers (by Layer and then Position). Clips are sorted
54  /// from lowest layer to top layer (since that is the sequence they need to be combined), and then
55  /// by position (left to right).
56  struct CompareClips{
57  bool operator()( Clip* lhs, Clip* rhs){
58  if( lhs->Layer() < rhs->Layer() ) return true;
59  if( lhs->Layer() == rhs->Layer() && lhs->Position() <= rhs->Position() ) return true;
60  return false;
61  }};
62 
63  /// Comparison method for sorting effect pointers (by Position, Layer, and Order). Effects are sorted
64  /// from lowest layer to top layer (since that is sequence clips are combined), and then by
65  /// position, and then by effect order.
67  bool operator()( EffectBase* lhs, EffectBase* rhs){
68  if( lhs->Layer() < rhs->Layer() ) return true;
69  if( lhs->Layer() == rhs->Layer() && lhs->Position() < rhs->Position() ) return true;
70  if( lhs->Layer() == rhs->Layer() && lhs->Position() == rhs->Position() && lhs->Order() > rhs->Order() ) return true;
71  return false;
72  }};
73 
74  /**
75  * @brief This class represents a timeline
76  *
77  * The timeline is one of the <b>most important</b> features of a video editor, and controls all
78  * aspects of how video, image, and audio clips are combined together, and how the final
79  * video output will be rendered. It has a collection of layers and clips, that arrange,
80  * sequence, and generate the final video output.
81  *
82  * The <b>following graphic</b> displays a timeline, and how clips can be arranged, scaled, and layered together. It
83  * also demonstrates how the viewport can be scaled smaller than the canvas, which can be used to zoom and pan around the
84  * canvas (i.e. pan & scan).
85  * \image html /doc/images/Timeline_Layers.png
86  *
87  * The <b>following graphic</b> displays how the playhead determines which frames to combine and layer.
88  * \image html /doc/images/Playhead.png
89  *
90  * Lets take a look at what the code looks like:
91  * @code
92  * // Create a Timeline
93  * Timeline t(1280, // width
94  * 720, // height
95  * Fraction(25,1), // framerate
96  * 44100, // sample rate
97  * 2 // channels
98  * );
99  *
100  * // Create some clips
101  * Clip c1(new ImageReader("MyAwesomeLogo.jpeg"));
102  * Clip c2(new FFmpegReader("BackgroundVideo.webm"));
103  *
104  * // CLIP 1 (logo) - Set some clip properties (with Keyframes)
105  * c1.Position(0.0); // Set the position or location (in seconds) on the timeline
106  * c1.gravity = GRAVITY_LEFT; // Set the alignment / gravity of the clip (position on the screen)
107  * c1.scale = SCALE_CROP; // Set the scale mode (how the image is resized to fill the screen)
108  * c1.Layer(1); // Set the layer of the timeline (higher layers cover up images of lower layers)
109  * c1.Start(0.0); // Set the starting position of the video (trim the left side of the video)
110  * c1.End(16.0); // Set the ending position of the video (trim the right side of the video)
111  * c1.alpha.AddPoint(1, 0.0); // Set the alpha to transparent on frame #1
112  * c1.alpha.AddPoint(500, 0.0); // Keep the alpha transparent until frame #500
113  * c1.alpha.AddPoint(565, 1.0); // Animate the alpha from transparent to visible (between frame #501 and #565)
114  *
115  * // CLIP 2 (background video) - Set some clip properties (with Keyframes)
116  * c2.Position(0.0); // Set the position or location (in seconds) on the timeline
117  * c2.Start(10.0); // Set the starting position of the video (trim the left side of the video)
118  * c2.Layer(0); // Set the layer of the timeline (higher layers cover up images of lower layers)
119  * c2.alpha.AddPoint(1, 1.0); // Set the alpha to visible on frame #1
120  * c2.alpha.AddPoint(150, 0.0); // Animate the alpha to transparent (between frame 2 and frame #150)
121  * c2.alpha.AddPoint(360, 0.0, LINEAR); // Keep the alpha transparent until frame #360
122  * c2.alpha.AddPoint(384, 1.0); // Animate the alpha to visible (between frame #360 and frame #384)
123  *
124  * // Add clips to timeline
125  * t.AddClip(&c1);
126  * t.AddClip(&c2);
127  *
128  * // Open the timeline reader
129  * t.Open();
130  *
131  * // Get frame number 1 from the timeline (This will generate a new frame, made up from the previous clips and settings)
132  * tr1::shared_ptr<Frame> f = t.GetFrame(1);
133  *
134  * // Now that we have an openshot::Frame object, lets have some fun!
135  * f->Display(); // Display the frame on the screen
136  *
137  * // Close the timeline reader
138  * t.Close();
139  * @endcode
140  */
141  class Timeline : public ReaderBase {
142  private:
143  bool is_open; ///<Is Timeline Open?
144  bool auto_map_clips; ///< Auto map framerates and sample rates to all clips
145  list<Clip*> clips; ///<List of clips on this timeline
146  list<Clip*> closing_clips; ///<List of clips that need to be closed
147  map<Clip*, Clip*> open_clips; ///<List of 'opened' clips on this timeline
148  list<EffectBase*> effects; ///<List of clips on this timeline
149  Cache final_cache; ///<Final cache of timeline frames
150 
151  /// Process a new layer of video or audio
152  void add_layer(tr1::shared_ptr<Frame> new_frame, Clip* source_clip, long int clip_frame_number, long int timeline_frame_number, bool is_top_clip);
153 
154  /// Apply a FrameMapper to a clip which matches the settings of this timeline
155  void apply_mapper_to_clip(Clip* clip);
156 
157  /// Apply JSON Diffs to various objects contained in this timeline
158  void apply_json_to_clips(Json::Value change) throw(InvalidJSONKey); ///<Apply JSON diff to clips
159  void apply_json_to_effects(Json::Value change) throw(InvalidJSONKey); ///< Apply JSON diff to effects
160  void apply_json_to_effects(Json::Value change, EffectBase* existing_effect) throw(InvalidJSONKey); ///<Apply JSON diff to a specific effect
161  void apply_json_to_timeline(Json::Value change) throw(InvalidJSONKey); ///<Apply JSON diff to timeline properties
162 
163  /// Calculate time of a frame number, based on a framerate
164  float calculate_time(long int number, Fraction rate);
165 
166  /// Find intersecting (or non-intersecting) openshot::Clip objects
167  ///
168  /// @returns A list of openshot::Clip objects
169  /// @param requested_frame The frame number that is requested.
170  /// @param number_of_frames The number of frames to check
171  /// @param include Include or Exclude intersecting clips
172  vector<Clip*> find_intersecting_clips(long int requested_frame, int number_of_frames, bool include);
173 
174  /// Get or generate a blank frame
175  tr1::shared_ptr<Frame> GetOrCreateFrame(Clip* clip, long int number);
176 
177  /// Apply effects to the source frame (if any)
178  tr1::shared_ptr<Frame> apply_effects(tr1::shared_ptr<Frame> frame, long int timeline_frame_number, int layer);
179 
180  /// Compare 2 floating point numbers for equality
181  bool isEqual(double a, double b);
182 
183  /// Sort clips by position on the timeline
184  void sort_clips();
185 
186  /// Sort effects by position on the timeline
187  void sort_effects();
188 
189  /// Update the list of 'opened' clips
190  void update_open_clips(Clip *clip, bool does_clip_intersect);
191 
192  public:
193 
194  /// @brief Default Constructor for the timeline (which sets the canvas width and height and FPS)
195  /// @param width The width of the timeline (and thus, the generated openshot::Frame objects)
196  /// @param height The height of the timeline (and thus, the generated openshot::Frame objects)
197  /// @param fps The frames rate of the timeline
198  /// @param sample_rate The sample rate of the timeline's audio
199  /// @param channels The number of audio channels of the timeline
200  /// @param channel_layout The channel layout (i.e. mono, stereo, 3 point surround, etc...)
201  Timeline(int width, int height, Fraction fps, int sample_rate, int channels, ChannelLayout channel_layout);
202 
203  /// @brief Add an openshot::Clip to the timeline
204  /// @param clip Add an openshot::Clip to the timeline. A clip can contain any type of Reader.
205  void AddClip(Clip* clip) throw(ReaderClosed);
206 
207  /// @brief Add an effect to the timeline
208  /// @param effect Add an effect to the timeline. An effect can modify the audio or video of an openshot::Frame.
209  void AddEffect(EffectBase* effect);
210 
211  /// Apply the timeline's framerate and samplerate to all clips
212  void ApplyMapperToClips();
213 
214  /// Determine if clips are automatically mapped to the timeline's framerate and samplerate
215  bool AutoMapClips() { return auto_map_clips; };
216 
217  /// @brief Automatically map all clips to the timeline's framerate and samplerate
218  void AutoMapClips(bool auto_map) { auto_map_clips = auto_map; };
219 
220  /// Return a list of clips on the timeline
221  list<Clip*> Clips() { return clips; };
222 
223  /// Close the timeline reader (and any resources it was consuming)
224  void Close();
225 
226  /// Return the list of effects on the timeline
227  list<EffectBase*> Effects() { return effects; };
228 
229  /// Get the cache object used by this reader
230  Cache* GetCache() { return &final_cache; };
231 
232  /// Get an openshot::Frame object for a specific frame number of this timeline.
233  ///
234  /// @returns The requested frame (containing the image)
235  /// @param requested_frame The frame number that is requested.
236  tr1::shared_ptr<Frame> GetFrame(long int requested_frame) throw(ReaderClosed, OutOfBoundsFrame);
237 
238  // Curves for the viewport
239  Keyframe viewport_scale; ///<Curve representing the scale of the viewport (0 to 100)
240  Keyframe viewport_x; ///<Curve representing the x coordinate for the viewport
241  Keyframe viewport_y; ///<Curve representing the y coordinate for the viewport
242 
243  // Background color
244  Color color; ///<Background color of timeline canvas
245 
246  /// Determine if reader is open or closed
247  bool IsOpen() { return is_open; };
248 
249  /// Return the type name of the class
250  string Name() { return "Timeline"; };
251 
252  /// Get and Set JSON methods
253  string Json(); ///< Generate JSON string of this object
254  void SetJson(string value) throw(InvalidJSON); ///< Load JSON string into this object
255  Json::Value JsonValue(); ///< Generate Json::JsonValue for this object
256  void SetJsonValue(Json::Value root) throw(InvalidFile, ReaderClosed); ///< Load Json::JsonValue into this object
257 
258  /// @brief Apply a special formatted JSON object, which represents a change to the timeline (add, update, delete)
259  /// This is primarily designed to keep the timeline (and its child objects... such as clips and effects) in sync
260  /// with another application... such as OpenShot Video Editor (http://www.openshot.org).
261  /// @param value A JSON string containing a key, value, and type of change.
262  void ApplyJsonDiff(string value) throw(InvalidJSON, InvalidJSONKey);
263 
264  /// Open the reader (and start consuming resources)
265  void Open();
266 
267  /// @brief Remove an openshot::Clip from the timeline
268  /// @param clip Remove an openshot::Clip from the timeline.
269  void RemoveClip(Clip* clip);
270 
271  /// @brief Remove an effect from the timeline
272  /// @param effect Remove an effect from the timeline.
273  void RemoveEffect(EffectBase* effect);
274 
275  };
276 
277 
278 }
279 
280 #endif
Header file for Fraction class.
This abstract class is the base class, used by all effects in libopenshot.
Definition: EffectBase.h:66
Keyframe viewport_scale
Curve representing the scale of the viewport (0 to 100)
Definition: Timeline.h:239
Header file for ReaderBase class.
bool AutoMapClips()
Determine if clips are automatically mapped to the timeline's framerate and samplerate.
Definition: Timeline.h:215
Header file for OpenMPUtilities (set some common macros)
Header file for Point class.
This header includes all commonly used effects for libopenshot, for ease-of-use.
Keyframe viewport_y
Curve representing the y coordinate for the viewport.
Definition: Timeline.h:241
This abstract class is the base class, used by all readers in libopenshot.
Definition: ReaderBase.h:95
int Layer()
Get layer of clip on timeline (lower number is covered by higher numbers)
Definition: ClipBase.h:78
Exception when a reader is closed, and a frame is requested.
Definition: Exceptions.h:234
Header file for the Keyframe class.
Exception for missing JSON Change key.
Definition: Exceptions.h:182
This class represents a clip (used to arrange readers on the timeline)
Definition: Clip.h:108
Header file for Frame class.
Exception for files that can not be found or opened.
Definition: Exceptions.h:132
Header file for Cache class.
Header file for Clip class.
float Position()
Get position on timeline (in seconds)
Definition: ClipBase.h:77
bool operator()(Clip *lhs, Clip *rhs)
Definition: Timeline.h:57
This class represents a fraction.
Definition: Fraction.h:42
Header file for the FrameMapper class.
This class is a cache manager for Frame objects.
Definition: Cache.h:55
ChannelLayout
This enumeration determines the audio channel layout (such as stereo, mono, 5 point surround...
Header file for Color class.
void AutoMapClips(bool auto_map)
Automatically map all clips to the timeline's framerate and samplerate.
Definition: Timeline.h:218
bool IsOpen()
Determine if reader is open or closed.
Definition: Timeline.h:247
Exception for frames that are out of bounds.
Definition: Exceptions.h:202
This class represents a color (used on the timeline and clips)
Definition: Color.h:42
Cache * GetCache()
Get the cache object used by this reader.
Definition: Timeline.h:230
Header file for EffectBase class.
Exception for invalid JSON.
Definition: Exceptions.h:152
Keyframe viewport_x
Curve representing the x coordinate for the viewport.
Definition: Timeline.h:240
Color color
Background color of timeline canvas.
Definition: Timeline.h:244
string Name()
Return the type name of the class.
Definition: Timeline.h:250
list< EffectBase * > Effects()
Return the list of effects on the timeline.
Definition: Timeline.h:227
list< Clip * > Clips()
Return a list of clips on the timeline.
Definition: Timeline.h:221
A Keyframe is a collection of Point instances, which is used to vary a number or property over time...
Definition: KeyFrame.h:64
int Order()
Get the order that this effect should be executed.
Definition: EffectBase.h:101
bool operator()(EffectBase *lhs, EffectBase *rhs)
Definition: Timeline.h:67
This class represents a timeline.
Definition: Timeline.h:141