10 def __init__ (self, pipe, abin, vbin):
12 self.stream_count += 1
13 self.Id = self.stream_count
17 self.Loop = gobject.MainLoop()
23 def __init__(self, config):
24 # set gstreamer basic options
30 def setup(self, filename, mux, vcodec, vbitrate,
31 fps, acodec, abitrate, width, height, port, options):
34 self.pipe = gst.Pipeline ()
35 uri = "file://" + filename
36 print "Opening Uri:" + uri
37 src = gst.element_make_from_uri (gst.URI_SRC, uri, "src")
41 decode = gst.element_factory_make ("decodebin", "decode")
47 #queue ! videoscale ! video/x-raw-yuv,width=240,height=144 ! videorate ! ffenc_h263p bitrate=256000 me-method=2 ! rtph263ppay ! udpsink host=224.0.0.1 port=5000
49 vqueue = gst.element_factory_make ("queue", "vqueue")
50 vscale = gst.element_factory_make ("videoscale", "vscale")
51 vrate = gst.element_factory_make ("videorate", "vrate")
52 vencode = gst.element_factory_make ("ffenc_mpeg4", "vencode")
53 vpay = gst.element_factory_make ("rtpmp4vpay", "vpay")
54 vsink = gst.element_factory_make ("udpsink", "vsink")
56 if (None in [vbin, vqueue, vscale, vrate, vencode, vpay, vsink]):
57 print "Fail to create video encode elements."
60 vscale_pad = vscale.get_pad("sink")
61 if (vscale_pad is None):
62 print "Fail to get vscale sink pad."
65 vscale_caps = gst.caps_from_string ("video/x-raw-yuv, width=%s, height=%s" % (width, height))
66 if (vscale_caps is None):
67 print "Fail to create video caps"
70 if (not vscale_pad.set_caps (vscale_caps)):
71 print "Fail to set video output caps"
74 vencode.set_property ("bitrate", 256000)
75 vencode.set_property ("me-method", 2)
77 vsink.set_property ("host", "224.0.0.1")
78 vsink.set_property ("port", 5000)
80 vbin.add (vqueue, vscale, vrate, vencode, vpay, vsink)
81 if (not gst.element_link_many (vqueue, vscale, vrate, vencode, vpay, vsink)):
82 print "Fail to link video elements"
85 vbin.add_pad (gst.GhostPad ("sink", vqueue.get_pad ("sink")))
88 #audio/x-raw-int ! queue ! audioconvert ! faac ! rtpmp4gpay ! udpsink name=upd_audio host=224.0.0.1 port=5002
90 aqueue = gst.element_factory_make ("queue", "vqueue")
91 aconvert = gst.element_factory_make ("audioconvert", "aconvert")
92 aencode = gst.element_factory_make ("faac", "aencode")
93 apay = gst.element_factory_make ("rtpmp4gpay", "apay")
94 asink = gst.element_factory_make ("udpsink", "asink")
96 if (None in [abin, aqueue, aconvert, aencode, apay, asink]):
97 print "Fail to create video encode elements."
100 asink.set_property ("host", "224.0.0.1")
101 asink.set_property ("port", 5002)
103 abin.add (aqueue, aconvert, aencode, apay, asink)
104 if (not gst.element_link_many (aqueue, aconvert, aencode, apay, asink)):
105 print "Fail to link video elements"
108 abin.add_pad (gst.GhostPad ("sink", aqueue.get_pad ("sink")))
110 self.pipe.add (src, decode, abin, vbin)
111 gst.element_link_many (src, decode)
113 stream_data = self.StreamData (self.pipe, abin, vbin)
115 bus = self.pipe.get_bus()
116 bus.add_signal_watch()
117 bus.connect("message", self.__on_bus_message, stream_data)
119 decode.connect("new-decoded-pad", self.__on_decode_new_pad, stream_data)
120 decode.connect("unknown-type", self.__on_decode_unknown_type, stream_data)
123 self.pipe.set_state (gst.STATE_PAUSED)
125 stream_data.Loop.run ()
128 a_caps = stream_data.ACaps
129 v_caps = stream_data.VCaps
130 stream_id = stream_data.Id
132 self.streams.append (stream_data)
136 print "Trying to play pipeline: %s" % self.pipe
139 self.pipe.set_state(gst.STATE_PLAYING)
140 except gobject.GError, e:
141 print "Error: " + str(e)
146 print "Trying to stop pipeline: %s" % self.pipe
149 self.pipeline.set_state(gst.STATE_NULL)
150 except gobject.GError, e:
151 print "Error: " + str(e)
153 def __on_bus_message (self, bus, message, stream_data):
156 if (t == gst.MESSAGE_STATE_CHANGED):
160 oldstate, newstate, pending = message.parse_state_changed ()
161 if ((oldstate == gst.STATE_READY) and \
162 (newstate == gst.STATE_PAUSED) and \
163 (pending == gst.STATE_VOID_PENDING) and \
164 (stream_data.Ready == False)):
165 state_changed_status, current_state, pending_state = stream_data.Pipe.get_state ()
166 if ((current_state == gst.STATE_PAUSED) and \
167 (pending_state == gst.STATE_VOID_PENDING)):
169 self.__fill_sink_pads (stream_data)
170 stream_data.Loop.quit ()
171 stream_data.Ready = True
172 elif (t == gst.MESSAGE_ERROR):
173 err, debug = message.parse_error()
174 print "Error: %s" % err, debug
175 stream_data.Loop.quit ()
176 stream_data.Ready = False
181 def __fill_sink_pads (self, stream_data):
183 asink = stream_data.Abin.get_by_name ("asink")
184 vsink = stream_data.Vbin.get_by_name ("vsink")
186 asink_pad = asink.get_pad ("sink")
187 stream_data.ACaps = asink_pad.get_negotiated_caps().to_string()
188 print "ACAPS " + stream_data.ACaps
190 vsink_pad = vsink.get_pad ("sink")
191 stream_data.VCaps = vsink_pad.get_negotiated_caps().to_string()
192 print "ACAPS " + stream_data.VCaps
196 def __on_decode_unknown_type (self, decode, pad, caps, stream_data):
201 def __on_decode_new_pad (self, decode, pad, arg1, stream_data):
203 caps = pad.get_caps().to_string()
204 print "New pad " + caps
205 if (caps.rfind ("audio") != -1):
206 apad = stream_data.Abin.get_pad ("sink")
207 if (pad.link (apad) != gst.PAD_LINK_OK):
208 print "Error on link audio pad"
210 elif (caps.rfind ("video") != -1):
211 vpad = stream_data.Vbin.get_pad ("sink")
212 if (pad.link (vpad) != gst.PAD_LINK_OK):
213 print "Error on link video pad"