gmyth-stream/server/plugins/media/mencoder.py
author renatofilho
Wed Apr 04 21:36:07 2007 +0100 (2007-04-04)
branchtrunk
changeset 500 f92a59c9a9a5
parent 498 7a0c3906dce2
child 504 2b5355061b66
permissions -rw-r--r--
[svn r505] fixed gmyth_file_transfer class
renatofilho@484
     1
import os
renatofilho@484
     2
import sys
renatofilho@484
     3
import lib
renatofilho@484
     4
import time
renatofilho@484
     5
import signal
renatofilho@484
     6
import socket
renatofilho@484
     7
import ConfigParser
renatofilho@484
     8
renatofilho@484
     9
from select import *
renatofilho@484
    10
from subprocess import *
renatofilho@484
    11
morphbr@497
    12
class Media(object):
renatofilho@484
    13
renatofilho@484
    14
    def __init__(self, config):
renatofilho@484
    15
renatofilho@484
    16
        self.config = config
renatofilho@484
    17
        self.language = "en"
renatofilho@484
    18
        self.socket = None
renatofilho@484
    19
        self.child_pid = None
renatofilho@484
    20
        self.mplayer = None
renatofilho@484
    21
        self.mencoder_pid = None
renatofilho@484
    22
        self.mplayer_pid = None
renatofilho@484
    23
        signal.signal(signal.SIGABRT, self.kill_handler)
renatofilho@484
    24
renatofilho@484
    25
    def kill_handler(self, sig, frame):
renatofilho@484
    26
        try:
renatofilho@484
    27
            os.kill(self.mplayer_pid.pid + 1, signal.SIGKILL)
renatofilho@484
    28
            sys.exit(0)
renatofilho@484
    29
        except:
renatofilho@484
    30
            lib.log("Problems closing child")
renatofilho@484
    31
renatofilho@484
    32
    def set_args(self, options):
renatofilho@484
    33
renatofilho@484
    34
        for opt in options:
renatofilho@484
    35
morphbr@498
    36
            if opt == "file" or opt == "dvd":
morphbr@497
    37
morphbr@498
    38
                if self.acodec == "mp3lame":
renatofilho@484
    39
                    audio = "-oac mp3lame -lameopts cbr:br=%s vol=5" % self.abitrate
renatofilho@484
    40
                else:
morphbr@492
    41
                    audio = "-oac lavc -lavcopts acodec=%s:abitrate=%s" % (\
renatofilho@484
    42
                        self.acodec, self.abitrate)
renatofilho@484
    43
morphbr@497
    44
morphbr@498
    45
            if opt == "file":
renatofilho@484
    46
                self.kind = "file"
morphbr@497
    47
                self.args += " %s -mf fps=%s -of %s %s"\
renatofilho@484
    48
                             " -ovc lavc -lavcopts vcodec=%s:vbitrate=%s -vf scale=%s:%s"\
morphbr@499
    49
                             " -really-quiet -o %s" % (
renatofilho@484
    50
                    self.filename, self.fps, self.mux, audio, self.vcodec,
renatofilho@484
    51
                    self.vbitrate, self.width, self.height, self.fifo)
renatofilho@484
    52
morphbr@498
    53
            elif opt == "dvd":
renatofilho@484
    54
                self.kind = "dvd"
renatofilho@484
    55
                self.args += " dvd://%s -alang %s -vf scale=%s:%s %s"\
morphbr@499
    56
                             " -of %s -ovc lavc -lavcopts vcodec=%s:vbitrate=%s"\
morphbr@499
    57
                             " -ofps %s -really-quiet -o %s" % (
renatofilho@484
    58
                    self.filename, self.language, self.width, self.height, audio,
morphbr@499
    59
                    self.mux, self.vcodec, self.vbitrate, self.fps, self.fifo)
renatofilho@484
    60
morphbr@498
    61
            elif opt == "local":
renatofilho@484
    62
                self.mplayer = os.popen("which mplayer").read().strip()
renatofilho@484
    63
morphbr@497
    64
            elif opt.find("language=") >= 0:
renatofilho@484
    65
                try:
renatofilho@484
    66
                    self.language = opt.split("=")[1]
renatofilho@484
    67
                except:
renatofilho@484
    68
                    lib.log("Bad language option")
renatofilho@484
    69
morphbr@497
    70
            elif opt.find("format=") >= 0:
morphbr@497
    71
                try:
morphbr@497
    72
                    self.mux += " -mpegopts format=%s" % opt.split("=")[1]
morphbr@497
    73
                except:
morphbr@497
    74
                    lib.log("Bad format option")
morphbr@497
    75
renatofilho@484
    76
renatofilho@484
    77
    def run_mplayer(self):
renatofilho@484
    78
        msg = "%s 1>/dev/null 2>/dev/null" % self.filename
morphbr@497
    79
morphbr@498
    80
        if self.kind == "dvd":
renatofilho@484
    81
            msg = "dvd://" + msg
renatofilho@484
    82
renatofilho@484
    83
        self.mplayer += " " + msg
renatofilho@484
    84
        self.mplayer_pid = Popen(self.mplayer, shell=True)
renatofilho@484
    85
renatofilho@484
    86
    def setup(self, filename, mux, vcodec, vbitrate,\
renatofilho@484
    87
              fps, acodec, abitrate, width, height, port, options):
renatofilho@484
    88
renatofilho@484
    89
        self.filename = filename
renatofilho@484
    90
        self.mux = mux
renatofilho@484
    91
        self.vcodec = vcodec
renatofilho@484
    92
        self.vbitrate = vbitrate
renatofilho@484
    93
        self.fps = fps
renatofilho@484
    94
        self.acodec = acodec
renatofilho@484
    95
        self.abitrate = abitrate
renatofilho@484
    96
        self.width = width
renatofilho@484
    97
        self.height = height
renatofilho@484
    98
renatofilho@484
    99
        self.port = int(port)
morphbr@499
   100
morphbr@499
   101
        self.path = self.config.get("Mencoder", "path")
morphbr@499
   102
        a, b = os.popen2(self.path)
morphbr@499
   103
        version = b.read().split("MEncoder ")[1].split(" (C)")[0].split("-")[-1]
morphbr@499
   104
morphbr@499
   105
        if version > "4.1.1": self.mencoder_old = False
morphbr@499
   106
        else: self.mencoder_old = True
morphbr@499
   107
morphbr@499
   108
        a.close()
morphbr@499
   109
        b.close()
morphbr@499
   110
morphbr@499
   111
        if self.mencoder_old:
morphbr@499
   112
            self.fifo = self.config.get("Mencoder", "fifo_path")
morphbr@499
   113
        else:
morphbr@499
   114
            self.fifo = "-"
renatofilho@484
   115
renatofilho@484
   116
        self.args = ""
renatofilho@484
   117
        self.kind = ""
renatofilho@484
   118
        self.set_args(options)
renatofilho@484
   119
morphbr@498
   120
        if self.kind == "file" and not os.path.exists(self.filename):
renatofilho@484
   121
            msg = "File requested does not exist. SETUP failed."
renatofilho@484
   122
            lib.log(msg)
renatofilho@484
   123
            return msg
renatofilho@484
   124
morphbr@498
   125
        # good one: /tmp/dvb.mpg avi mpeg4 400 25 mp3lame 192 320 240 5000 file
morphbr@497
   126
        #4 mpeg mpeg1video 400 25 mp3lame 192 400 240 5000 language=en local dvd
morphbr@498
   127
        if self.socket != None:
renatofilho@484
   128
            del(self.socket)
renatofilho@484
   129
renatofilho@484
   130
        self.socket = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
renatofilho@484
   131
        self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
renatofilho@484
   132
        self.socket.bind( ('', self.port) )
renatofilho@484
   133
        self.socket.listen(1)
renatofilho@484
   134
renatofilho@484
   135
        return 0
renatofilho@484
   136
renatofilho@484
   137
renatofilho@484
   138
    def play(self):
renatofilho@484
   139
morphbr@499
   140
        if self.mencoder_old:
morphbr@499
   141
            try:
morphbr@499
   142
                os.mkfifo(self.fifo)
morphbr@499
   143
            except:
morphbr@499
   144
                lib.log("Fifo already exists")
morphbr@499
   145
renatofilho@484
   146
renatofilho@484
   147
        lib.log("Starting Mencoder: %s %s" % (self.path, self.args) )
renatofilho@484
   148
        # exec Mencoder
morphbr@499
   149
        if self.mencoder_old:
morphbr@499
   150
            self.mencoder_pid = Popen(self.path + self.args, shell=True)
morphbr@499
   151
            fifo = open(self.fifo)
morphbr@499
   152
        else:
morphbr@499
   153
            self.path += self.args
morphbr@499
   154
            pin, self.pout = os.popen2(self.path)
renatofilho@484
   155
renatofilho@484
   156
        self.child_pid = os.fork()
renatofilho@484
   157
morphbr@498
   158
        if self.child_pid == 0:
renatofilho@484
   159
            conn,addr= self.socket.accept()
renatofilho@484
   160
            lib.log("Sending Data to client: %s" % addr[0])
renatofilho@484
   161
morphbr@499
   162
            data = self.pout.read(1024)
morphbr@499
   163
renatofilho@484
   164
            conn.settimeout(5)
renatofilho@484
   165
            retry = 0
renatofilho@484
   166
morphbr@498
   167
            while data != "" and retry < 5:
renatofilho@484
   168
                try:
renatofilho@484
   169
                    conn.send(data)
renatofilho@484
   170
                    r, w, x = select([conn], [], [], 0)
renatofilho@484
   171
                    if conn in r:
renatofilho@484
   172
                        back = conn.recv(1024)
morphbr@498
   173
                        if back == "OK" and self.mplayer and not self.mplayer_pid:
renatofilho@484
   174
                            self.run_mplayer()
renatofilho@484
   175
renatofilho@484
   176
                except socket.error:
renatofilho@484
   177
                    lib.log("Socket error (maybe timeout ?)")
renatofilho@484
   178
                    retry += 1
renatofilho@484
   179
morphbr@499
   180
                data = self.pout.read(1024)
renatofilho@484
   181
morphbr@497
   182
            if retry < 5:
renatofilho@484
   183
                lib.log("Finished sending Data to client: %s" % addr[0])
renatofilho@484
   184
            else:
renatofilho@484
   185
                lib.log("Client timed out")
renatofilho@484
   186
renatofilho@484
   187
            sys.exit(0)
renatofilho@484
   188
renatofilho@484
   189
renatofilho@484
   190
    def stop(self):
renatofilho@484
   191
        try:
morphbr@499
   192
            if self.mplayer_old:
morphbr@499
   193
                os.kill(self.mencoder_pid.pid + 1, signal.SIGKILL)
morphbr@499
   194
            else:
morphbr@499
   195
                self.pout.close()
renatofilho@484
   196
            self.mplayer = None
renatofilho@484
   197
        except:
renatofilho@484
   198
            lib.log("Trying to stop before playing...")
renatofilho@484
   199
morphbr@498
   200
        if self.socket != None:
renatofilho@484
   201
            lib.log("Closing socket")
renatofilho@484
   202
            self.socket.close()
renatofilho@484
   203
renatofilho@484
   204
            lib.log("Trying to stop Mencoder process")
morphbr@498
   205
            if self.child_pid != None:
renatofilho@484
   206
                os.kill(self.child_pid, signal.SIGABRT)