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