Using gstreamer 1.16.1 So I make a GESEffect and attached it to my GESClip as follows. I build out the rest of my timeline and then I call `ges_timeline_save_to_uri`, and the clip gets serialized with an effect having different values.
Even stranger, when I look at the *.dot files in my GST_DEBUG_DUMP_DOT_DIR, I don't see any evidence that this effect is being applied (not that I know what to look for). Why is GES modifying my GESEffect? Can I prevent it from doing this? Is there a better way to achieve my goal? _______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel |
Hello, Have you tried using `videorate rate=0.0` outside GES? I am not sure it has been tested at all I have to say. Also you should modify effects properties through the `ges_timeline_element_set_child_property` and friends API, `g_object_set` is not going to work the way you are using it here, and it explains why it didn't work. Also, time effects is a complex matter in GES and we are almost ready to merge its support: https://gitlab.freedesktop.org/gstreamer/gst-editing-services/-/merge_requests/177! I have been reviewing the branch and playing with it lately and it is almost ready to get merged, it will be in for 1.18 in any case, `videorate` with a `rate` set is going to work well in that branch. Regards, - Thibault On Tue, May 19, 2020 at 8:41 PM David Ing <[hidden email]> wrote:
_______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel |
I have tried
`videorate rate=0.0` with an independent gst-launch-1.0 command, and it does work as you would expect. I also tried specifying a rate of 0.01 with the GESEffect and I still see the problem. I tried using `ges_timeline_element_set_child_property` and the pipeline just gets stuck when it tries to move into the PAUSED state. I will use a workaround for the time being. Glad to know that it is fixed in 1.18. On Tue, May 19, 2020 at 9:05 PM Thibault Saunier <[hidden email]> wrote:
_______________________________________________ gstreamer-devel mailing list [hidden email] https://lists.freedesktop.org/mailman/listinfo/gstreamer-devel |
Free forum by Nabble | Edit this page |