Re: [gst-cvs] ensonic gst-plugins-good: gst-plugins-good/ gst-plugins-good/docs/plugins/ gst-plugins-good/docs/plugins/inspect/ gst-plugins-good/gst/videomixer/

classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

Re: [gst-cvs] ensonic gst-plugins-good: gst-plugins-good/ gst-plugins-good/docs/plugins/ gst-plugins-good/docs/plugins/inspect/ gst-plugins-good/gst/videomixer/

Tim-Philipp Müller-2
On Mon, 2008-01-14 at 23:43 -0800, [hidden email] wrote:

Hi Stefan,

Did you mean to commit those GST_PARAM_CONTROLLABLE bits?

 Cheers
  -Tim



-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: [gst-cvs] ensonic gst-plugins-good: gst-plugins-good/ gst-plugins-good/docs/plugins/ gst-plugins-good/docs/plugins/inspect/ gst-plugins-good/gst/videomixer/

Stefan Sauer
hi,

Tim Müller schrieb: yes and now there is also the missing gst_object_sync. Attached is that tests
that shows that it even works. That will need to wait for the end of the freeze
though.

Stefan

>
>  Cheers
>   -Tim
>
>
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Microsoft
> Defy all challenges. Microsoft(R) Visual Studio 2008.
> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
> _______________________________________________
> gstreamer-devel mailing list
> [hidden email]
> https://lists.sourceforge.net/lists/listinfo/gstreamer-devel

#!/usr/bin/env python
# -*- Mode: Python -*-
# vi:si:et:sw=4:sts=4:ts=4

# videomixer-controller.py
# (c) 2008 Stefan Kost <[hidden email]>
# Test case for the GstController on videotestsrc and videomixer

import pygst
pygst.require('0.10')
import gst
import time

def main():
    pipeline = gst.Pipeline("videocontroller")
    src = gst.element_factory_make("videotestsrc", "src")
    mix = gst.element_factory_make("videomixer", "mix")
    conv = gst.element_factory_make("ffmpegcolorspace", "conv")
    sink = gst.element_factory_make("autovideosink", "sink")
    pipeline.add(src, mix, conv, sink)

    spad = src.get_static_pad('src')
    dpad = mix.get_request_pad('sink_%d')

    spad.link(dpad)
    mix.link(conv)
    conv.link(sink)

    control = gst.Controller(dpad, "xpos", "ypos")
    control.set_interpolation_mode("xpos", gst.INTERPOLATE_LINEAR)
    control.set_interpolation_mode("ypos", gst.INTERPOLATE_LINEAR)

    control.set("xpos", 0, 0)
    control.set("xpos", 5 * gst.SECOND, 200)

    control.set("ypos", 0, 0)
    control.set("ypos", 5 * gst.SECOND, 200)

    pipeline.set_state(gst.STATE_PLAYING)

    time.sleep(7)

if __name__ == "__main__":
    main()

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: [gst-cvs] ensonic gst-plugins-good: gst-plugins-good/ gst-plugins-good/docs/plugins/ gst-plugins-good/docs/plugins/inspect/ gst-plugins-good/gst/videomixer/

Tim-Philipp Müller-2
On Wed, 2008-01-16 at 22:16 +0200, Stefan Kost wrote:

> > Did you mean to commit those GST_PARAM_CONTROLLABLE bits?
>
> yes and now there is also the missing gst_object_sync.

Well, it would be great if you could next time (a) mention this in the
ChangeLog then, (b) also commit the other bits without which the change
doesn't make sense, and (c) preferably not commit it along with a bunch
of unrelated doc fixes. Thanks!

Cheers
 -Tim



-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: [gst-cvs] ensonic gst-plugins-good: gst-plugins-good/ gst-plugins-good/docs/plugins/ gst-plugins-good/docs/plugins/inspect/ gst-plugins-good/gst/videomixer/

Stefan Sauer
Hi,
Quoting Tim Müller <[hidden email]>:

> On Wed, 2008-01-16 at 22:16 +0200, Stefan Kost wrote:
>
>> > Did you mean to commit those GST_PARAM_CONTROLLABLE bits?
>>
>> yes and now there is also the missing gst_object_sync.
>
> Well, it would be great if you could next time (a) mention this in the
> ChangeLog then, (b) also commit the other bits without which the change
> doesn't make sense, and (c) preferably not commit it along with a bunch
> of unrelated doc fixes. Thanks!

The doc fixes where the main plan. If I don't get disctracted for two  
full evening ressurecting my builds, I can better concentrate on  
committing parts of files (which is always painful).

Stefan

>
> Cheers
>  -Tim
>
>
>
> -------------------------------------------------------------------------
> This SF.net email is sponsored by: Microsoft
> Defy all challenges. Microsoft(R) Visual Studio 2008.
> http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
> _______________________________________________
> gstreamer-devel mailing list
> [hidden email]
> https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
>



-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel