gmyth-stream/server/plugins/media/mencoder.py
author renatofilho
Tue Apr 03 19:42:17 2007 +0100 (2007-04-03)
branchtrunk
changeset 487 ab3aa66009de
child 492 63d9475228ac
permissions -rw-r--r--
[svn r492] created client lib
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
renatofilho@484
    12
class Media:
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
renatofilho@484
    36
            if (opt == "file" or opt == "dvd"):
renatofilho@484
    37
                if (self.acodec == "mp3lame"):
renatofilho@484
    38
                    audio = "-oac mp3lame -lameopts cbr:br=%s vol=5" % self.abitrate
renatofilho@484
    39
                else:
renatofilho@484
    40
                    audio = "-oac lavc -lavcopts acodec=%s abitrate=%s" % (\
renatofilho@484
    41
                        self.acodec, self.abitrate)
renatofilho@484
    42
renatofilho@484
    43
            if (opt == "file"):
renatofilho@484
    44
                self.kind = "file"
renatofilho@484
    45
                self.args += " %s -mf fps=%s -of %s %s"\
renatofilho@484
    46
                             " -ovc lavc -lavcopts vcodec=%s:vbitrate=%s -vf scale=%s:%s"\
renatofilho@484
    47
                             " -o %s 1> /dev/null 2> /dev/null" % (
renatofilho@484
    48
                    self.filename, self.fps, self.mux, audio, self.vcodec,
renatofilho@484
    49
                    self.vbitrate, self.width, self.height, self.fifo)
renatofilho@484
    50
renatofilho@484
    51
            elif (opt == "dvd"):
renatofilho@484
    52
                self.kind = "dvd"
renatofilho@484
    53
                self.args += " dvd://%s -alang %s -vf scale=%s:%s %s"\
renatofilho@484
    54
                             " -of %s -ovc lavc -lavcopts vcodec=%s:vbitrate=%s -o %s"\
renatofilho@484
    55
                             " -ofps %s 1> /dev/null 2> /dev/null" % (
renatofilho@484
    56
                    self.filename, self.language, self.width, self.height, audio,
renatofilho@484
    57
                    self.mux, self.vcodec, self.vbitrate, self.fifo, self.fps)
renatofilho@484
    58
renatofilho@484
    59
            elif (opt == "local"):
renatofilho@484
    60
                self.mplayer = os.popen("which mplayer").read().strip()
renatofilho@484
    61
renatofilho@484
    62
            elif (opt.find("language=") >= 0):
renatofilho@484
    63
                try:
renatofilho@484
    64
                    self.language = opt.split("=")[1]
renatofilho@484
    65
                except:
renatofilho@484
    66
                    lib.log("Bad language option")
renatofilho@484
    67
renatofilho@484
    68
renatofilho@484
    69
    def run_mplayer(self):
renatofilho@484
    70
        msg = "%s 1>/dev/null 2>/dev/null" % self.filename
renatofilho@484
    71
        if (self.kind == "dvd"):
renatofilho@484
    72
            msg = "dvd://" + msg
renatofilho@484
    73
renatofilho@484
    74
        self.mplayer += " " + msg
renatofilho@484
    75
        self.mplayer_pid = Popen(self.mplayer, shell=True)
renatofilho@484
    76
renatofilho@484
    77
    def setup(self, filename, mux, vcodec, vbitrate,\
renatofilho@484
    78
              fps, acodec, abitrate, width, height, port, options):
renatofilho@484
    79
renatofilho@484
    80
        self.filename = filename
renatofilho@484
    81
        self.mux = mux
renatofilho@484
    82
        self.vcodec = vcodec
renatofilho@484
    83
        self.vbitrate = vbitrate
renatofilho@484
    84
        self.fps = fps
renatofilho@484
    85
        self.acodec = acodec
renatofilho@484
    86
        self.abitrate = abitrate
renatofilho@484
    87
        self.width = width
renatofilho@484
    88
        self.height = height
renatofilho@484
    89
renatofilho@484
    90
        self.port = int(port)
renatofilho@484
    91
        self.fifo = self.config.get("Mencoder", "fifo_path")
renatofilho@484
    92
renatofilho@484
    93
        self.args = ""
renatofilho@484
    94
        self.kind = ""
renatofilho@484
    95
        self.set_args(options)
renatofilho@484
    96
renatofilho@484
    97
        if (self.kind == "file" and not os.path.exists(self.filename)):
renatofilho@484
    98
            msg = "File requested does not exist. SETUP failed."
renatofilho@484
    99
            lib.log(msg)
renatofilho@484
   100
            return msg
renatofilho@484
   101
renatofilho@484
   102
        # good one: /tmp/dvb.mpg avi mpeg4 400 25 mp3lame 192 320 240 5000
renatofilho@484
   103
        self.path = self.config.get("Mencoder", "path")
renatofilho@484
   104
renatofilho@484
   105
        if (self.socket != None):
renatofilho@484
   106
            del(self.socket)
renatofilho@484
   107
renatofilho@484
   108
        self.socket = socket.socket(socket.AF_INET,socket.SOCK_STREAM)
renatofilho@484
   109
        self.socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
renatofilho@484
   110
        self.socket.bind( ('', self.port) )
renatofilho@484
   111
        self.socket.listen(1)
renatofilho@484
   112
renatofilho@484
   113
        return 0
renatofilho@484
   114
renatofilho@484
   115
renatofilho@484
   116
    def play(self):
renatofilho@484
   117
renatofilho@484
   118
        try:
renatofilho@484
   119
            os.mkfifo(self.fifo)
renatofilho@484
   120
        except:
renatofilho@484
   121
            lib.log("Fifo already exists")
renatofilho@484
   122
renatofilho@484
   123
        lib.log("Starting Mencoder: %s %s" % (self.path, self.args) )
renatofilho@484
   124
        # exec Mencoder
renatofilho@484
   125
        self.mencoder_pid = Popen(self.path + self.args, shell=True)
renatofilho@484
   126
renatofilho@484
   127
        fifo = open(self.fifo)
renatofilho@484
   128
renatofilho@484
   129
        self.child_pid = os.fork()
renatofilho@484
   130
renatofilho@484
   131
        if (self.child_pid == 0):
renatofilho@484
   132
            conn,addr= self.socket.accept()
renatofilho@484
   133
            lib.log("Sending Data to client: %s" % addr[0])
renatofilho@484
   134
renatofilho@484
   135
            data = fifo.read(1024)
renatofilho@484
   136
            conn.settimeout(5)
renatofilho@484
   137
            retry = 0
renatofilho@484
   138
renatofilho@484
   139
            while( data != "" and retry < 5):
renatofilho@484
   140
                try:
renatofilho@484
   141
                    conn.send(data)
renatofilho@484
   142
                    r, w, x = select([conn], [], [], 0)
renatofilho@484
   143
                    if conn in r:
renatofilho@484
   144
                        back = conn.recv(1024)
renatofilho@484
   145
                        if (back == "OK" and self.mplayer and not self.mplayer_pid):
renatofilho@484
   146
                            self.run_mplayer()
renatofilho@484
   147
renatofilho@484
   148
                except socket.error:
renatofilho@484
   149
                    lib.log("Socket error (maybe timeout ?)")
renatofilho@484
   150
                    retry += 1
renatofilho@484
   151
renatofilho@484
   152
                data = fifo.read(1024)
renatofilho@484
   153
renatofilho@484
   154
            if (retry < 5):
renatofilho@484
   155
                lib.log("Finished sending Data to client: %s" % addr[0])
renatofilho@484
   156
            else:
renatofilho@484
   157
                lib.log("Client timed out")
renatofilho@484
   158
renatofilho@484
   159
            sys.exit(0)
renatofilho@484
   160
renatofilho@484
   161
renatofilho@484
   162
    def stop(self):
renatofilho@484
   163
        try:
renatofilho@484
   164
            os.kill(self.mencoder_pid.pid + 1, signal.SIGKILL)
renatofilho@484
   165
            self.mplayer = None
renatofilho@484
   166
        except:
renatofilho@484
   167
            lib.log("Trying to stop before playing...")
renatofilho@484
   168
renatofilho@484
   169
        if (self.socket != None):
renatofilho@484
   170
            lib.log("Closing socket")
renatofilho@484
   171
            self.socket.close()
renatofilho@484
   172
renatofilho@484
   173
            lib.log("Trying to stop Mencoder process")
renatofilho@484
   174
            if (self.child_pid != None):
renatofilho@484
   175
                os.kill(self.child_pid, signal.SIGABRT)