2002-10-03 22:11:37 +00:00
|
|
|
#!/usr/bin/env python
|
2005-11-19 10:37:58 +00:00
|
|
|
# -*- Mode: Python -*-
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
|
|
|
|
2002-03-24 11:41:24 +00:00
|
|
|
# gst-python
|
|
|
|
# Copyright (C) 2002 David I. Lehn
|
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Library General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Library General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Library General Public
|
|
|
|
# License along with this library; if not, write to the
|
|
|
|
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
#
|
2002-12-17 17:40:42 +00:00
|
|
|
# Author: David I. Lehn <dlehn@users.sourceforge.net>
|
2002-03-24 11:41:24 +00:00
|
|
|
#
|
2002-03-24 07:49:36 +00:00
|
|
|
|
2004-02-24 18:40:21 +00:00
|
|
|
import sys
|
|
|
|
|
2005-07-13 12:31:47 +00:00
|
|
|
import pygst
|
2005-12-01 19:15:26 +00:00
|
|
|
pygst.require('0.10')
|
2005-07-13 12:31:47 +00:00
|
|
|
|
2004-02-24 18:40:21 +00:00
|
|
|
import gst
|
2002-03-24 07:49:36 +00:00
|
|
|
|
2004-10-11 09:55:44 +00:00
|
|
|
def handoff_cb(sender, *args):
|
2002-03-24 07:49:36 +00:00
|
|
|
print sender.get_name(), args
|
|
|
|
|
2004-02-24 18:40:21 +00:00
|
|
|
def main(args):
|
2002-03-24 07:49:36 +00:00
|
|
|
# create a new bin to hold the elements
|
|
|
|
#gst_debug_set_categories(-1)
|
2005-07-13 12:31:47 +00:00
|
|
|
bin = gst.parse_launch('fakesrc name=source silent=1 num-buffers=10 signal-handoffs=true ! ' +
|
|
|
|
'fakesink name=sink silent=1 signal-handoffs=true')
|
2004-10-11 09:55:44 +00:00
|
|
|
source = bin.get_by_name('source')
|
|
|
|
source.connect('handoff', handoff_cb)
|
2005-07-13 12:31:47 +00:00
|
|
|
source.get_pad("src").connect("have-data", handoff_cb)
|
|
|
|
sink = bin.get_by_name('sink')
|
2004-10-11 09:55:44 +00:00
|
|
|
sink.connect('handoff', handoff_cb)
|
2005-07-13 12:31:47 +00:00
|
|
|
sink.get_pad("sink").connect('have-data', handoff_cb)
|
|
|
|
|
|
|
|
print source, sink
|
|
|
|
|
|
|
|
bus = bin.get_bus()
|
2004-10-11 09:55:44 +00:00
|
|
|
|
2004-02-24 18:40:21 +00:00
|
|
|
res = bin.set_state(gst.STATE_PLAYING);
|
2002-03-24 07:49:36 +00:00
|
|
|
assert res
|
|
|
|
|
2005-07-13 12:31:47 +00:00
|
|
|
while 1:
|
|
|
|
msg = bus.poll(gst.MESSAGE_EOS | gst.MESSAGE_ERROR, gst.SECOND)
|
|
|
|
if msg:
|
|
|
|
break
|
2002-03-24 07:49:36 +00:00
|
|
|
|
2004-02-24 18:40:21 +00:00
|
|
|
res = bin.set_state(gst.STATE_NULL)
|
2002-03-24 07:49:36 +00:00
|
|
|
assert res
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2004-02-24 18:40:21 +00:00
|
|
|
sys.exit(main(sys.argv))
|