I am attempting to write a totem plugin in python to interface with gstreamer api. How can I accomplish creating a simple gstreamer pipline within totem? Is this possible?

This is the modified sample python script from the repository.

from gi.repository import GObject, Peas, Totem # pylint: disable-msg=E0611,W0611
import gst

class SamplePython (GObject.Object, Peas.Activatable):
    __gtype_name__ = 'SamplePython'

    object = GObject.property (type = GObject.Object)

    def __init__ (self):
        GObject.Object.__init__ (self)

    def do_activate (self):
        print "Activating sample Python plugin"
        #self.object.action_fullscreen_toggle ()

        self.player = gst.Pipeline("player")
        source = gst.element_factory_make("videotestsrc", "video-source")
        sink = gst.element_factory_make("xvimagesink", "video-output")
        caps = gst.Caps("video/x-raw-yuv, width=320, height=230")
        filter = gst.element_factory_make("capsfilter", "filter")
        filter.set_property("caps", caps)

        self.player.add(source, filter, sink)
        gst.element_link_many(source, filter, sink)

    def do_deactivate (self):
        print "Deactivating sample Python plugin"
        #self.object.action_fullscreen_toggle ()

EDIT: I already have a working gst pipline. Instead of creating a custom player from scratch, I was thinking of using totem and add this functionality as a plugin.

A media player such as a GUI based Totem player or command-line based gst-launch tool available as part of GStreamer package can be used to create a player pipeline automatically or manually by providing options to the player. Ref: Using GStreamer for hardware accelerated video decoding on Intel Atom

link|improve this question

67% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.