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