gstreamer/docs/design/effects.txt

333 lines
11 KiB
Text
Raw Normal View History

Effects
-------
Summary
-------
1. Basic ideas
2. Problems
3. Propositions to solve those problems
A. The registry
B. Effects configurability
C. Keyframes
4. Use-cases
2010-12-07 12:47:47 +00:00
5. API draft
2011-01-18 19:03:42 +00:00
The goal of this proposal is to design a simple way to handle effects through an
API which would allow developers to handle any use-cases.
1. Basic ideas
----------------
2011-01-18 19:03:42 +00:00
* GESTrackEffects are subclasses of GESTrackOperation
2011-01-12 10:47:30 +00:00
* You can add effects on any clip or layer
2011-01-18 19:03:42 +00:00
* You can add effects over several clips and control them as a unique effect.
2011-01-18 19:03:42 +00:00
* Effects are configurable and those properties can change during time
2011-01-18 19:03:42 +00:00
* We must be able to handle third-party effect providers, like the
gnome-video-effects standard.
* We must be able to implement complex effects. This means effects that are
more than adding GstElement-s to the timeline. It can also mean effects
2011-01-18 19:03:42 +00:00
that apply both video and audio changes.
2. Problems
----------
2011-01-18 19:03:42 +00:00
* We must be able to provide a list of effects available on the system at
runtime.
* We must be able to configure effects through an API in GES
withtout having to access the GstElements properties directly.
2011-01-18 19:03:42 +00:00
* We should also expose the GstElement-s contained in an effect so
it is possible for people to control their properties as they wish.
2011-01-18 19:03:42 +00:00
* We must be able to implement and handle complexe effects directly in GES
2011-01-18 19:03:42 +00:00
* We must be able to configure effects through time -> Keyframes without
duplicating code from GStreamer
3. Propositions to solve those problems
---------------------------------------
2011-01-12 10:47:30 +00:00
A. The registry => Still to design
2011-01-12 10:47:30 +00:00
We could implement a GESRegistry which would actually
retrieve elements (effects) from the GSTRegistry and any other mean
such as gnome-video-effects to let us get all the effects that are present
on the system....
This way the developers could have the list of all the effects
that are installed on the system pretty easily.
B. Effects configurability
The idea to be able to configure effects through a simple API in GES would
2011-01-12 10:47:30 +00:00
be to add an API in GESTrackObject to access the gst-object properties that
user would like to configure.
2011-01-18 19:03:42 +00:00
We would also have a method to set those properties easily.
We should also find a way to handle that in the case of systems such as
gnome-effects
C. Keyframes
2011-01-18 19:03:42 +00:00
We may want to handle this use-case directly in GES and for any kind of
time related configuration? FIXME
=> Special specifications for that?
4. Use-cases
-----------
UC-1. The user wants to add an effect to an entire clip => GESTimelineObject
new API
UC-2. The developer wants to allow users to configure effects => New
2011-01-12 10:47:30 +00:00
GESTrackOperation API
UC-3. The user wants to add an effect on a specific portion of a clip, we
should allow him to specify a portion of the clip where the effect should be
applied.
2011-01-18 19:03:42 +00:00
UC-4. We want to implement an effect which isn't only composed by a bin, but
is more complexe than that (ex: "effect '24'") => we have the
GESTrackOperation which is the base class (abstract) for this kind of
implementation. This class should implement vmethods to get/set configurable
properties.
UC-5. A developer wants to implement effect which handle music and video at
the same time, Would the solution be to implement a GESTimelineEffect
to handle this special usecase? FIXME
2010-12-07 12:47:47 +00:00
UC-6. The developers wants to configure each elements of an effect the way
he wants
2010-12-07 12:47:47 +00:00
with a full control over it.
UC-7. Developers want to expose all effects present on the system to the
end-user
2010-12-07 12:47:47 +00:00
2011-01-12 10:47:30 +00:00
5. API draft
2010-12-07 12:47:47 +00:00
------------
2011-01-12 10:47:30 +00:00
A. GESTrackObject new API
2010-12-09 15:01:02 +00:00
2011-01-12 10:47:30 +00:00
signals:
-------
* property-changed: emited when a usefull property of a GstElement
contained in the GESTrackObject changes
2011-01-18 19:03:42 +00:00
2010-12-07 12:47:47 +00:00
/**
* ges_track_object_list_children_properties:
2010-12-07 12:47:47 +00:00
*
2011-01-12 10:47:30 +00:00
* @object: The origin #GESTrackObject
*
* A convenience method that lists all the usefull configurable properties
* of the GstElement-s contained in @object.
2011-01-12 10:47:30 +00:00
*
* Returns: an array of GParamSpec of the configurable properties of the
* GstElement-s contained in @object or %NULL if a problem occurred.
2010-12-07 12:47:47 +00:00
*/
2011-01-12 10:47:30 +00:00
GParamSpec **
ges_track_object_list_children_properties (GESTrackObject *object);
2010-12-07 12:47:47 +00:00
2011-01-12 10:47:30 +00:00
-> Usecases: Let user know all the property he can configure.
2010-12-07 12:47:47 +00:00
/**
* ges_track_object_set_child_property:
2010-12-07 12:47:47 +00:00
*
2011-01-12 10:47:30 +00:00
* @object: The origin #GESTrackObject
* @property_name: The name of the property
* @value: the value
2010-12-07 12:47:47 +00:00
*
2011-01-12 10:47:30 +00:00
* Sets a property of a GstElement contained in @object.
2010-12-07 12:47:47 +00:00
*
*/
void ges_track_object_set_child_property (GESTrackObject *object,
2011-01-12 10:47:30 +00:00
const gchar *property_name,
GValue * value);
2010-12-07 12:47:47 +00:00
-> Usecases:
2011-01-12 10:47:30 +00:00
+ Let user configure effects easily (UC-3)
2010-12-09 15:01:02 +00:00
2010-12-07 12:47:47 +00:00
/**
* ges_track_object_get_child_property:
2010-12-07 12:47:47 +00:00
*
2011-01-12 10:47:30 +00:00
* @object: The origin #GESTrackObject
* @property_name: The name of the property
* @value: return location for the property value
2010-12-07 12:47:47 +00:00
*
2011-01-12 10:47:30 +00:00
* Gets a property of a GstElement contained in @object.
2010-12-07 12:47:47 +00:00
*/
void ges_track_object_get_child_property (GESTrackObject *object,
2011-01-12 10:47:30 +00:00
const gchar *property_name,
GValue * value);
2010-12-07 12:47:47 +00:00
/**
* ges_track_object_get_material:
*
* @object: The origin #GESTrackObject
*
* This is a convenience method to get the #GESMaterial
* from which @object has been made.
*
* Returns: The material from which @object has been made or %NULL
* if @object has been made by another mean
*/
GESMaterial *ges_track_object_get_material (GESTrackObject *object);
B. GESTimelineObject new API
2010-12-07 12:47:47 +00:00
2011-01-12 10:47:30 +00:00
signals:
-------
2010-12-09 15:01:02 +00:00
* effect-added: emited when an effect is added
* effect-removed: emited when an effect is removed
* effect-priority-changed: emited when an effect priority-changed
2011-01-18 19:03:42 +00:00
2010-12-07 12:47:47 +00:00
/**
* ges_timeline_object_add_effect:
2010-12-07 12:47:47 +00:00
*
* @object: The origin #GESTimelineObject
* @effect_material: The #GESEffect from which to create the effect
2011-01-12 10:47:30 +00:00
* @position: The top position you want to give to the effect,
* -1 if you want it to be added at the end of effects.
2010-12-07 12:47:47 +00:00
*
* Adds a new effect corresponding to @effect_material to the
* #GESTimelineObject
2010-12-07 12:47:47 +00:00
*
* Returns: The newly created #GESTrackEffect, or %NULL if there was an
* error.
2010-12-07 12:47:47 +00:00
*/
GESTrackEffect *ges_timeline_object_add_effect (GESTimelineObject *object,
GESEffect *effect_material,
gint position);
2010-12-07 12:47:47 +00:00
/**
* ges_timeline_object_get_effects:
2010-12-07 12:47:47 +00:00
*
* @object: The origin #GESTimelineObject
2010-12-07 12:47:47 +00:00
*
2011-01-12 10:47:30 +00:00
* Returns: a #GList of the #GESTrackEffect that are applied on
* @object order by ascendant priorities.
2010-12-07 12:47:47 +00:00
* The refcount of the objects will be increased. The user will have to
2011-01-12 10:47:30 +00:00
* unref each #GESTrackOperation and free the #GList.
2010-12-07 12:47:47 +00:00
*/
2011-01-12 10:47:30 +00:00
GList *
ges_timeline_object_get_effects (GESTimelineObject *object);
2010-12-09 15:01:02 +00:00
-> Usecases:
+ First step to allow the configuration of effects (UC-3)
/**
* ges_timeline_object_set_top_effect_position:
2010-12-09 15:01:02 +00:00
*
* @object: The origin #GESTimelineObject
2011-01-12 10:47:30 +00:00
* @effect: The #GESTrackEffect to move
2010-12-09 15:01:02 +00:00
* @newposition: the new position at which to move the @effect
*
2011-01-12 10:47:30 +00:00
* Returns: %TRUE if @effect was successfuly moved, %FALSE otherwize.
2010-12-09 15:01:02 +00:00
*/
gboolean
ges_timeline_object_set_top_effect_position (GESTimelineObject *object,
2011-01-12 10:47:30 +00:00
GESTrackEffect *effect, guint newposition);
2010-12-07 12:47:47 +00:00
/**
* ges_timeline_object_get_top_effect_position:
*
* @object: The origin #GESTimelineObject
* @effect: The #GESTrackEffect we want to get the top position from
*
* Gets the top position of an effect.
*
* Returns: The top position of the effect, -1 if something went wrong.
*/
gint
ges_timeline_object_get_top_effect_position (GESTimelineObject *object,
GESTrackEffect *effect);
2011-01-12 10:47:30 +00:00
C - The GESTrackEffect API:
2010-12-07 12:47:47 +00:00
/**
2011-01-12 10:47:30 +00:00
* ges_track_effect_new_from_material:
*
* @effect_material: The #GESEffect from which to create this
* #GESTrackEffect
2010-12-07 12:47:47 +00:00
*
* Creates a new #GESTrackEffect from a #GESEffect
2010-12-07 12:47:47 +00:00
*
* Returns: a newly created #GESTrackEffect, or %NULL if something went
* wrong.
2010-12-07 12:47:47 +00:00
*/
GESTrackEffect *ges_track_effect_new_from_material(GESTrackEffect *effect,
GESEffect *effect_material);
2010-12-07 12:47:47 +00:00
/**
2011-01-12 10:47:30 +00:00
* ges_track_effect_new_from_bin_desc:
*
* @bin_dec: The gst-launch like bin description of the effect
2010-12-07 12:47:47 +00:00
*
* Creates a new #GESTrackEffect from the description of the bin. This is
* a convenience method for testing puposes.
2010-12-07 12:47:47 +00:00
*
* Returns: a newly created #GESTrackEffect, or %NULL if something went
* wrong.
2010-12-07 12:47:47 +00:00
*/
2011-01-12 10:47:30 +00:00
GESTrackEffect *ges_track_effect_new_from_bin_desc(GESTrackEffect *effect,
const gchar *bin_desc);
D - The GESTimelineEffect API:
The GESTimelineEffect basically doesn't have anything else but what
GESTimelineObject has.
2011-01-12 10:47:30 +00:00
-> Usecases: The user wants to control multiple effects in sync. The user
wants to add an effect to the whole timeline. The user wants
to had an effect to a segment of the timeline without caring
bout what clip it is applied on.
2011-01-12 10:47:30 +00:00
E - The GESEffect:
The GESEffect class is a subclass of GESMaterial, it is used to describe
effects independently of the usage which is made of it in the timeline.
A GESEffect can specify a GESTrackOperation class to use in a
TimelineObject.
All important properties are inherited from GESMaterial such as:
* Name
* Description
* Tags
* ...
We should also be able to list properties of the effect from the GESMaterial.
2011-01-12 10:47:30 +00:00
=================
TODO GESRegistry API:
This should be a singleton since we don't want an app to instanciate more
2011-01-18 19:03:42 +00:00
than one registry. It must be able to get effects from various sources.
2011-01-12 10:47:30 +00:00
We should also make sure any custom effect is detected.
2010-12-07 12:47:47 +00:00
/**
2011-01-12 10:47:30 +00:00
* ges_registry_get_default:
2010-12-07 12:47:47 +00:00
*
* Returns a newly created #GESEffectRegistry or the existing one
* increasing
2011-01-12 10:47:30 +00:00
* its refcount
2010-12-07 12:47:47 +00:00
*/
2011-01-12 10:47:30 +00:00
GESEffectRegistry *
ges_registry_get_default (void);
2010-12-07 12:47:47 +00:00
-> Usecases:
+ Have a registry of all effects that are on the system (UC-8)
2010-12-07 12:47:47 +00:00
/**
2011-01-12 10:47:30 +00:00
* ges_effect_registry_get_effect_list:
2010-12-07 12:47:47 +00:00
*
2011-01-12 10:47:30 +00:00
* @self: The origin #GESEffectRegistry
2010-12-07 12:47:47 +00:00
*
2011-01-12 10:47:30 +00:00
* Returns a #GList of #GESEffectDescriptors. The
2010-12-07 12:47:47 +00:00
*/
2011-01-12 10:47:30 +00:00
GList *
ges_registry_get_effect_list (GESEffectRegistry *self);
2010-12-07 12:47:47 +00:00
-> Usecases:
+ Get all effects descriptors that are on the system (UC-8)