morphbr@453
|
1 |
import pygst
|
morphbr@453
|
2 |
pygst.require("0.10")
|
morphbr@453
|
3 |
import gst
|
morphbr@453
|
4 |
import gobject
|
renatofilho@483
|
5 |
import socket
|
morphbr@453
|
6 |
|
morphbr@453
|
7 |
class Media:
|
renatofilho@483
|
8 |
class StreamData:
|
renatofilho@483
|
9 |
stream_count = 0
|
renatofilho@483
|
10 |
|
renatofilho@483
|
11 |
def __init__ (self, pipe, abin, vbin, sink):
|
renatofilho@483
|
12 |
|
renatofilho@483
|
13 |
self.stream_count += 1
|
renatofilho@483
|
14 |
self.Id = self.stream_count
|
renatofilho@483
|
15 |
self.Pipe = pipe
|
renatofilho@483
|
16 |
self.Abin = abin
|
renatofilho@483
|
17 |
self.Vbin = vbin
|
renatofilho@483
|
18 |
self.Sink = sink
|
renatofilho@483
|
19 |
self.Loop = gobject.MainLoop()
|
renatofilho@483
|
20 |
self.ACaps = ""
|
renatofilho@483
|
21 |
self.VCaps = ""
|
renatofilho@483
|
22 |
self.Ready = False
|
renatofilho@483
|
23 |
|
morphbr@453
|
24 |
|
morphbr@453
|
25 |
def __init__(self, config):
|
morphbr@453
|
26 |
# set gstreamer basic options
|
morphbr@453
|
27 |
self.config = config
|
renatofilho@483
|
28 |
self.pipe = None
|
renatofilho@483
|
29 |
self.streams = []
|
renatofilho@483
|
30 |
self.socket = None
|
renatofilho@483
|
31 |
self.connection = None
|
renatofilho@483
|
32 |
self.addr = None
|
morphbr@453
|
33 |
|
morphbr@466
|
34 |
|
renatofilho@483
|
35 |
def setup(self, filename, mux, vcodec, vbitrate,
|
renatofilho@483
|
36 |
fps, acodec, abitrate, width, height, port, options):
|
morphbr@453
|
37 |
|
morphbr@453
|
38 |
## Pipelines
|
renatofilho@483
|
39 |
self.pipe = gst.Pipeline ()
|
renatofilho@483
|
40 |
uri = "file://" + filename
|
renatofilho@483
|
41 |
print "Opening Uri:" + uri
|
renatofilho@483
|
42 |
src = gst.element_make_from_uri (gst.URI_SRC, uri, "src")
|
renatofilho@483
|
43 |
if (src is None):
|
renatofilho@483
|
44 |
return None
|
renatofilho@483
|
45 |
|
renatofilho@483
|
46 |
decode = gst.element_factory_make ("decodebin", "decode")
|
renatofilho@483
|
47 |
if (decode is None):
|
renatofilho@483
|
48 |
return None
|
morphbr@453
|
49 |
|
renatofilho@483
|
50 |
mux = gst.element_factory_make ("avimux", "mux")
|
renatofilho@483
|
51 |
if (mux is None):
|
renatofilho@483
|
52 |
return None
|
morphbr@453
|
53 |
|
renatofilho@483
|
54 |
sink = gst.element_factory_make ("fdsink", "sink")
|
renatofilho@483
|
55 |
if (sink is None):
|
renatofilho@483
|
56 |
return None
|
morphbr@453
|
57 |
|
renatofilho@483
|
58 |
#Create socket
|
renatofilho@483
|
59 |
self.socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
renatofilho@483
|
60 |
self.socket.bind(('', int (port)))
|
renatofilho@483
|
61 |
|
renatofilho@483
|
62 |
#video encode
|
renatofilho@483
|
63 |
#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
|
renatofilho@483
|
64 |
vbin = gst.Bin ()
|
renatofilho@483
|
65 |
vqueue = gst.element_factory_make ("queue", "vqueue")
|
renatofilho@483
|
66 |
vscale = gst.element_factory_make ("videoscale", "vscale")
|
renatofilho@483
|
67 |
vrate = gst.element_factory_make ("videorate", "vrate")
|
renatofilho@483
|
68 |
vencode = gst.element_factory_make ("ffenc_h263p", "vencode")
|
morphbr@453
|
69 |
|
renatofilho@483
|
70 |
if (None in [vbin, vqueue, vscale, vrate, vencode]):
|
renatofilho@483
|
71 |
print "Fail to create video encode elements."
|
renatofilho@483
|
72 |
return None
|
morphbr@453
|
73 |
|
renatofilho@483
|
74 |
vscale_pad = vscale.get_pad("sink")
|
renatofilho@483
|
75 |
if (vscale_pad is None):
|
renatofilho@483
|
76 |
print "Fail to get vscale sink pad."
|
renatofilho@483
|
77 |
return None
|
morphbr@453
|
78 |
|
renatofilho@483
|
79 |
vscale_caps = gst.caps_from_string ("video/x-raw-yuv, width=%s, height=%s" % (width, height))
|
renatofilho@483
|
80 |
if (vscale_caps is None):
|
renatofilho@483
|
81 |
print "Fail to create video caps"
|
renatofilho@483
|
82 |
return None
|
morphbr@453
|
83 |
|
renatofilho@483
|
84 |
if (not vscale_pad.set_caps (vscale_caps)):
|
renatofilho@483
|
85 |
print "Fail to set video output caps"
|
renatofilho@483
|
86 |
return None
|
renatofilho@483
|
87 |
|
renatofilho@483
|
88 |
vbin.add (vqueue, vscale, vrate, vencode)
|
renatofilho@483
|
89 |
if (not gst.element_link_many (vqueue, vscale, vrate, vencode)):
|
renatofilho@483
|
90 |
print "Fail to link video elements"
|
renatofilho@483
|
91 |
return None
|
renatofilho@483
|
92 |
|
renatofilho@483
|
93 |
vbin.add_pad (gst.GhostPad ("sink", vqueue.get_pad ("sink")))
|
renatofilho@483
|
94 |
vbin.add_pad (gst.GhostPad ("src", vencode.get_pad ("src")))
|
renatofilho@483
|
95 |
|
renatofilho@483
|
96 |
#audio encode
|
renatofilho@483
|
97 |
#audio/x-raw-int ! queue ! audioconvert ! faac ! rtpmp4gpay ! udpsink name=upd_audio host=224.0.0.1 port=5002
|
renatofilho@483
|
98 |
abin = gst.Bin ()
|
renatofilho@483
|
99 |
aqueue = gst.element_factory_make ("queue", "vqueue")
|
renatofilho@483
|
100 |
aconvert = gst.element_factory_make ("audioconvert", "aconvert")
|
renatofilho@483
|
101 |
aencode = gst.element_factory_make ("ffenc_ac3", "aencode")
|
renatofilho@483
|
102 |
|
renatofilho@483
|
103 |
if (None in [abin, aqueue, aconvert, aencode]):
|
renatofilho@483
|
104 |
print "Fail to create video encode elements."
|
renatofilho@483
|
105 |
return None
|
renatofilho@483
|
106 |
|
renatofilho@483
|
107 |
abin.add (aqueue, aconvert, aencode)
|
renatofilho@483
|
108 |
if (not gst.element_link_many (aqueue, aconvert, aencode)):
|
renatofilho@483
|
109 |
print "Fail to link video elements"
|
renatofilho@483
|
110 |
return None
|
renatofilho@483
|
111 |
|
renatofilho@483
|
112 |
abin.add_pad (gst.GhostPad ("sink", aqueue.get_pad ("sink")))
|
renatofilho@483
|
113 |
abin.add_pad (gst.GhostPad ("src", aencode.get_pad ("src")))
|
renatofilho@483
|
114 |
|
renatofilho@483
|
115 |
#Finish Pipeline
|
renatofilho@483
|
116 |
|
renatofilho@483
|
117 |
self.pipe.add (src, decode, abin, vbin, mux, sink)
|
renatofilho@483
|
118 |
gst.element_link_many (src, decode)
|
renatofilho@483
|
119 |
gst.element_link_many (mux, sink)
|
renatofilho@483
|
120 |
|
renatofilho@483
|
121 |
#Linking decode with mux
|
renatofilho@483
|
122 |
mux_audio = mux.get_pad ("audio_0")
|
renatofilho@483
|
123 |
mux_video = mux.get_pad ("video_0")
|
renatofilho@483
|
124 |
|
renatofilho@483
|
125 |
audio_pad = abin.get_pad ("src")
|
renatofilho@483
|
126 |
video_pad = vbin.get_pad ("src")
|
renatofilho@483
|
127 |
|
renatofilho@483
|
128 |
if (audio_pad.link (mux_audio) != gst.PAD_LINK_OK):
|
renatofilho@483
|
129 |
print "Fail to link audio with mux"
|
renatofilho@483
|
130 |
return None
|
renatofilho@483
|
131 |
|
renatofilho@483
|
132 |
if (video_pad.link (mux_video) != gst.PAD_LINK_OK):
|
renatofilho@483
|
133 |
print "Fail to link audio with mux"
|
renatofilho@483
|
134 |
return None
|
renatofilho@483
|
135 |
|
renatofilho@483
|
136 |
stream_data = self.StreamData (self.pipe, abin, vbin, sink)
|
renatofilho@483
|
137 |
|
renatofilho@483
|
138 |
bus = self.pipe.get_bus()
|
renatofilho@483
|
139 |
bus.add_signal_watch()
|
renatofilho@483
|
140 |
bus.connect("message", self.__on_bus_message, stream_data)
|
renatofilho@483
|
141 |
|
renatofilho@483
|
142 |
decode.connect("new-decoded-pad", self.__on_decode_new_pad, stream_data)
|
renatofilho@483
|
143 |
decode.connect("unknown-type", self.__on_decode_unknown_type, stream_data)
|
renatofilho@483
|
144 |
|
renatofilho@483
|
145 |
|
renatofilho@483
|
146 |
self.pipe.set_state (gst.STATE_PAUSED)
|
renatofilho@483
|
147 |
print "Running Pipe"
|
renatofilho@483
|
148 |
stream_data.Loop.run ()
|
renatofilho@483
|
149 |
print "End run"
|
renatofilho@483
|
150 |
|
renatofilho@483
|
151 |
a_caps = stream_data.ACaps
|
renatofilho@483
|
152 |
v_caps = stream_data.VCaps
|
renatofilho@483
|
153 |
stream_id = stream_data.Id
|
renatofilho@483
|
154 |
|
renatofilho@483
|
155 |
self.streams.append (stream_data)
|
morphbr@453
|
156 |
|
morphbr@453
|
157 |
def play(self):
|
morphbr@453
|
158 |
|
morphbr@453
|
159 |
print "Trying to play pipeline: %s" % self.pipe
|
morphbr@453
|
160 |
try:
|
renatofilho@483
|
161 |
if (self.pipe):
|
renatofilho@483
|
162 |
print "Waiting for connection"
|
renatofilho@483
|
163 |
self.socket.listen(1)
|
renatofilho@483
|
164 |
print "Connection Requested"
|
renatofilho@483
|
165 |
#Create socket
|
renatofilho@483
|
166 |
self.connection, self.addr = self.socket.accept ()
|
renatofilho@483
|
167 |
|
renatofilho@483
|
168 |
stream_data = self.streams[0]
|
renatofilho@483
|
169 |
stream_data.Sink.set_property ("fd", self.connection.fileno());
|
renatofilho@483
|
170 |
print "Connected"
|
renatofilho@483
|
171 |
|
renatofilho@483
|
172 |
self.pipe.set_state(gst.STATE_PLAYING)
|
morphbr@453
|
173 |
except gobject.GError, e:
|
morphbr@453
|
174 |
print "Error: " + str(e)
|
morphbr@453
|
175 |
|
morphbr@453
|
176 |
|
morphbr@453
|
177 |
def stop(self):
|
morphbr@453
|
178 |
|
morphbr@453
|
179 |
print "Trying to stop pipeline: %s" % self.pipe
|
morphbr@453
|
180 |
try:
|
morphbr@453
|
181 |
if (self.pipeline):
|
renatofilho@483
|
182 |
self.connection.close ()
|
morphbr@453
|
183 |
self.pipeline.set_state(gst.STATE_NULL)
|
morphbr@453
|
184 |
except gobject.GError, e:
|
morphbr@453
|
185 |
print "Error: " + str(e)
|
morphbr@453
|
186 |
|
renatofilho@483
|
187 |
def __on_bus_message (self, bus, message, stream_data):
|
renatofilho@483
|
188 |
|
renatofilho@483
|
189 |
t = message.type
|
renatofilho@483
|
190 |
if (t == gst.MESSAGE_STATE_CHANGED):
|
renatofilho@483
|
191 |
oldstate = -1
|
renatofilho@483
|
192 |
newstate = -1
|
renatofilho@483
|
193 |
pending = -1
|
renatofilho@483
|
194 |
oldstate, newstate, pending = message.parse_state_changed ()
|
renatofilho@483
|
195 |
if ((oldstate == gst.STATE_READY) and \
|
renatofilho@483
|
196 |
(newstate == gst.STATE_PAUSED) and \
|
renatofilho@483
|
197 |
(pending == gst.STATE_VOID_PENDING) and \
|
renatofilho@483
|
198 |
(stream_data.Ready == False)):
|
renatofilho@483
|
199 |
state_changed_status, current_state, pending_state = stream_data.Pipe.get_state ()
|
renatofilho@483
|
200 |
if ((current_state == gst.STATE_PAUSED) and \
|
renatofilho@483
|
201 |
(pending_state == gst.STATE_VOID_PENDING)):
|
renatofilho@483
|
202 |
print "Pipe paused"
|
renatofilho@483
|
203 |
stream_data.Loop.quit ()
|
renatofilho@483
|
204 |
stream_data.Ready = True
|
renatofilho@483
|
205 |
elif (t == gst.MESSAGE_ERROR):
|
renatofilho@483
|
206 |
err, debug = message.parse_error()
|
renatofilho@483
|
207 |
print "Error: %s" % err, debug
|
renatofilho@483
|
208 |
stream_data.Loop.quit ()
|
renatofilho@483
|
209 |
stream_data.Ready = False
|
renatofilho@483
|
210 |
|
renatofilho@483
|
211 |
return True
|
renatofilho@483
|
212 |
|
renatofilho@483
|
213 |
def __on_decode_unknown_type (self, decode, pad, caps, stream_data):
|
renatofilho@483
|
214 |
|
renatofilho@483
|
215 |
print "Unknown Type"
|
renatofilho@483
|
216 |
return None
|
renatofilho@483
|
217 |
|
renatofilho@483
|
218 |
def __on_decode_new_pad (self, decode, pad, arg1, stream_data):
|
renatofilho@483
|
219 |
|
renatofilho@483
|
220 |
caps = pad.get_caps().to_string()
|
renatofilho@483
|
221 |
print "New pad " + caps
|
renatofilho@483
|
222 |
if (caps.rfind ("audio") != -1):
|
renatofilho@483
|
223 |
apad = stream_data.Abin.get_pad ("sink")
|
renatofilho@483
|
224 |
if (pad.link (apad) != gst.PAD_LINK_OK):
|
renatofilho@483
|
225 |
print "Error on link audio pad"
|
renatofilho@483
|
226 |
return None
|
renatofilho@483
|
227 |
elif (caps.rfind ("video") != -1):
|
renatofilho@483
|
228 |
vpad = stream_data.Vbin.get_pad ("sink")
|
renatofilho@483
|
229 |
if (pad.link (vpad) != gst.PAD_LINK_OK):
|
renatofilho@483
|
230 |
print "Error on link video pad"
|
renatofilho@483
|
231 |
return None
|
renatofilho@483
|
232 |
else:
|
renatofilho@483
|
233 |
print "Invalid caps"
|
renatofilho@483
|
234 |
|
renatofilho@483
|
235 |
|