mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
Specs: Review design of effect implementation proposal
This commit is contained in:
parent
6e5d16ac6d
commit
36e742c114
1 changed files with 20 additions and 10 deletions
|
@ -18,10 +18,16 @@ API which would allow developers to handle any use-case
|
|||
----------------
|
||||
|
||||
* Effects are actually descendant of GESTrackOperation
|
||||
* You can add effects wherever you want
|
||||
|
||||
* You can add effects on any clip, layer or on part of them
|
||||
|
||||
* Effects are configurable and those could change during time
|
||||
|
||||
* We should be able to handle the gnome-video-effects standard
|
||||
* We can implement complexe effects
|
||||
|
||||
* We can implement complexe effects. It means effects that are more
|
||||
than adding GstElement-s to the timeline. It can also mean effects
|
||||
that are both: video and audio at the same time
|
||||
|
||||
2. Problems
|
||||
----------
|
||||
|
@ -31,6 +37,9 @@ API which would allow developers to handle any use-case
|
|||
* We should be able to configure effects through an API in GES and
|
||||
not directly configuring the corresponding GstElement properties.
|
||||
|
||||
* We should also expose the GstElement-s contained in an effect so
|
||||
it is possible for people to control their properties as they wish.
|
||||
|
||||
* We should be able to handle complexe effects.
|
||||
|
||||
* We should be able to implement complexe effects directly in GES
|
||||
|
@ -45,10 +54,11 @@ API which would allow developers to handle any use-case
|
|||
A. The registry
|
||||
|
||||
We could implement a GESEffectRegistry which would actually
|
||||
retrieve elements from the GSTRegistry which actually are effects,
|
||||
as well as effects from gnome-video-effects. This way the developers
|
||||
could have the list of all the effects that are installed on the système
|
||||
pretty easily.
|
||||
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue