1991-12-03 12:50:00 -04:00
|
|
|
# VFile -- two classes for Video Files.
|
|
|
|
# VinFile -- for video input.
|
|
|
|
# VoutFile -- for video output.
|
|
|
|
|
|
|
|
import sys
|
|
|
|
import gl
|
|
|
|
import GL
|
1991-12-03 12:52:40 -04:00
|
|
|
import colorsys
|
1991-12-03 12:50:00 -04:00
|
|
|
|
|
|
|
Error = 'VFile.Error' # Exception
|
|
|
|
|
1992-02-28 11:59:23 -04:00
|
|
|
# Missing from GL.py:
|
|
|
|
DMRGB = 0
|
|
|
|
|
1992-02-11 10:45:43 -04:00
|
|
|
MAXMAP = 4096 - 256
|
|
|
|
|
1991-12-03 12:52:40 -04:00
|
|
|
def conv_grey(l,x,y): return colorsys.yiq_to_rgb(l,0,0)
|
|
|
|
def conv_yiq (y,i,q): return colorsys.yiq_to_rgb(y, (i-0.5)*1.2, q-0.5)
|
|
|
|
def conv_hls (l,h,s): return colorsys.hls_to_rgb(h,l,s)
|
|
|
|
def conv_hsv (v,h,s): return colorsys.hsv_to_rgb(h,s,v)
|
|
|
|
def conv_rgb (r,g,b):
|
1992-02-11 10:45:43 -04:00
|
|
|
raise Error, 'Attempt to make RGB colormap'
|
1992-02-28 11:59:23 -04:00
|
|
|
def conv_rgb8(rgb,d1,d2):
|
|
|
|
rgb = int(rgb*255.0)
|
|
|
|
r = (rgb >> 5) & 0x07
|
|
|
|
g = (rgb ) & 0x07
|
|
|
|
b = (rgb >> 3) & 0x03
|
|
|
|
return (r/7.0, g/7.0, b/3.0)
|
1991-12-03 12:50:00 -04:00
|
|
|
|
|
|
|
# Class VinFile represents a video file used for input.
|
|
|
|
#
|
|
|
|
# It has the following methods:
|
|
|
|
# init(filename)
|
|
|
|
# initfp(fp, filename)
|
1992-08-20 08:51:47 -03:00
|
|
|
# reopen()
|
1991-12-03 12:50:00 -04:00
|
|
|
# rewind()
|
1992-08-18 18:11:18 -03:00
|
|
|
# getnextframe()
|
|
|
|
# skipnextframe()
|
|
|
|
# (and many more)
|
1991-12-03 12:50:00 -04:00
|
|
|
#
|
|
|
|
# The following read-only data members provide public information:
|
|
|
|
# version
|
|
|
|
# filename
|
|
|
|
# width, height
|
|
|
|
# packfactor
|
1991-12-03 12:52:40 -04:00
|
|
|
# c0bits, c1bits, c2bits, chrompack
|
|
|
|
# offset
|
|
|
|
# format
|
1991-12-03 12:50:00 -04:00
|
|
|
#
|
|
|
|
# These writable data members provide additional parametrization:
|
1992-02-11 10:45:43 -04:00
|
|
|
# magnify
|
1991-12-03 12:50:00 -04:00
|
|
|
# xorigin, yorigin
|
1992-02-28 11:59:23 -04:00
|
|
|
# fallback
|
1991-12-03 12:50:00 -04:00
|
|
|
|
1992-08-18 11:16:21 -03:00
|
|
|
class VinFile:
|
1991-12-03 12:50:00 -04:00
|
|
|
|
|
|
|
# init() and initfp() raise Error if the header is bad.
|
|
|
|
# init() raises whatever open() raises if the file can't be opened.
|
|
|
|
|
|
|
|
def init(self, filename):
|
1992-02-11 10:45:43 -04:00
|
|
|
if filename == '-':
|
1991-12-03 12:50:00 -04:00
|
|
|
return self.initfp(sys.stdin, filename)
|
|
|
|
return self.initfp(open(filename, 'r'), filename)
|
|
|
|
|
1992-08-18 11:16:21 -03:00
|
|
|
def initfp(self, fp, filename):
|
1991-12-03 12:50:00 -04:00
|
|
|
self.colormapinited = 0
|
|
|
|
self.magnify = 1.0
|
|
|
|
self.xorigin = self.yorigin = 0
|
1992-02-28 11:59:23 -04:00
|
|
|
self.fallback = 1
|
|
|
|
self.skipchrom = 0
|
1991-12-03 12:50:00 -04:00
|
|
|
self.fp = fp
|
|
|
|
self.filename = filename
|
1992-08-20 08:51:47 -03:00
|
|
|
self.quiet = 0
|
1991-12-03 12:50:00 -04:00
|
|
|
#
|
|
|
|
line = self.fp.readline()
|
1992-02-11 10:45:43 -04:00
|
|
|
if line == 'CMIF video 1.0\n':
|
1991-12-03 12:50:00 -04:00
|
|
|
self.version = 1.0
|
1992-02-11 10:45:43 -04:00
|
|
|
elif line == 'CMIF video 2.0\n':
|
1991-12-03 12:50:00 -04:00
|
|
|
self.version = 2.0
|
1992-02-11 10:45:43 -04:00
|
|
|
elif line == 'CMIF video 3.0\n':
|
1991-12-03 12:52:40 -04:00
|
|
|
self.version = 3.0
|
1991-12-03 12:50:00 -04:00
|
|
|
else:
|
|
|
|
raise Error, self.filename + ': bad video format'
|
|
|
|
#
|
|
|
|
if self.version < 2.0:
|
1991-12-03 12:52:40 -04:00
|
|
|
self.c0bits, self.c1bits, self.c2bits = 8, 0, 0
|
1991-12-03 12:50:00 -04:00
|
|
|
self.chrompack = 0
|
1991-12-03 12:52:40 -04:00
|
|
|
self.offset = 0
|
|
|
|
self.format = 'grey'
|
1992-02-11 10:45:43 -04:00
|
|
|
elif self.version == 2.0:
|
1991-12-03 12:50:00 -04:00
|
|
|
line = self.fp.readline()
|
|
|
|
try:
|
1991-12-03 12:52:40 -04:00
|
|
|
self.c0bits, self.c1bits, self.c2bits, \
|
1991-12-03 12:50:00 -04:00
|
|
|
self.chrompack = eval(line[:-1])
|
1991-12-03 12:52:40 -04:00
|
|
|
if self.c1bits or self.c2bits:
|
1992-02-11 10:45:43 -04:00
|
|
|
self.format = 'yiq'
|
1991-12-03 12:52:40 -04:00
|
|
|
else:
|
1992-02-11 10:45:43 -04:00
|
|
|
self.format = 'grey'
|
1991-12-03 12:52:40 -04:00
|
|
|
self.offset = 0
|
|
|
|
except:
|
1992-02-11 10:45:43 -04:00
|
|
|
raise Error, \
|
|
|
|
self.filename + ': bad 2.0 color info'
|
|
|
|
elif self.version == 3.0:
|
1991-12-03 12:52:40 -04:00
|
|
|
line = self.fp.readline()
|
|
|
|
try:
|
1992-02-11 10:45:43 -04:00
|
|
|
self.format, rest = eval(line[:-1])
|
|
|
|
if self.format == 'rgb':
|
1992-02-28 11:59:23 -04:00
|
|
|
self.offset = 0
|
|
|
|
self.c0bits = 0
|
|
|
|
self.c1bits = 0
|
|
|
|
self.c2bits = 0
|
|
|
|
self.chrompack = 0
|
1992-02-11 10:45:43 -04:00
|
|
|
elif self.format == 'grey':
|
|
|
|
self.offset = 0
|
|
|
|
self.c0bits = rest
|
|
|
|
self.c1bits = self.c2bits = \
|
1991-12-03 12:52:40 -04:00
|
|
|
self.chrompack = 0
|
1992-02-11 10:45:43 -04:00
|
|
|
else:
|
|
|
|
self.c0bits,self.c1bits,self.c2bits,\
|
|
|
|
self.chrompack,self.offset = rest
|
1991-12-03 12:50:00 -04:00
|
|
|
except:
|
1992-02-11 10:45:43 -04:00
|
|
|
raise Error, \
|
|
|
|
self.filename + ': bad 3.0 color info'
|
1991-12-03 12:52:40 -04:00
|
|
|
|
|
|
|
try:
|
1992-02-11 10:45:43 -04:00
|
|
|
self.convcolor = eval('conv_'+self.format)
|
1991-12-03 12:52:40 -04:00
|
|
|
except:
|
1992-02-11 10:45:43 -04:00
|
|
|
raise Error, \
|
|
|
|
self.filename + ': unknown colorsys ' + self.format
|
1991-12-03 12:50:00 -04:00
|
|
|
#
|
|
|
|
line = self.fp.readline()
|
|
|
|
try:
|
|
|
|
x = eval(line[:-1])
|
1992-02-11 10:45:43 -04:00
|
|
|
if self.version > 1.0 or len(x) == 3:
|
1991-12-03 12:50:00 -04:00
|
|
|
self.width, self.height, self.packfactor = x
|
1992-02-11 10:45:43 -04:00
|
|
|
if self.packfactor == 0:
|
|
|
|
self.format = 'rgb'
|
1991-12-03 12:50:00 -04:00
|
|
|
else:
|
|
|
|
sef.width, self.height = x
|
|
|
|
self.packfactor = 2
|
|
|
|
except:
|
|
|
|
raise Error, self.filename + ': bad (w,h,pf) info'
|
1992-02-28 11:59:23 -04:00
|
|
|
self.frameno = 0
|
|
|
|
self.framecache = []
|
|
|
|
self.hascache = 0
|
1991-12-03 12:50:00 -04:00
|
|
|
#
|
|
|
|
return self
|
|
|
|
|
1992-02-28 11:59:23 -04:00
|
|
|
def warmcache(self):
|
|
|
|
if self.hascache: return
|
|
|
|
n = 0
|
|
|
|
try:
|
|
|
|
while 1:
|
|
|
|
void = self.skipnextframe()
|
|
|
|
n = n + 1
|
|
|
|
except EOFError:
|
|
|
|
pass
|
|
|
|
if not self.hascache:
|
|
|
|
raise Error, 'Cannot warm cache'
|
|
|
|
|
1992-08-18 14:00:51 -03:00
|
|
|
def close(self):
|
|
|
|
self.fp.close()
|
|
|
|
self.fp = None
|
|
|
|
|
1992-02-28 11:59:23 -04:00
|
|
|
|
|
|
|
#
|
|
|
|
# getinfo returns all info pertaining to a film. The returned tuple
|
|
|
|
# can be passed to VoutFile.setinfo()
|
|
|
|
#
|
|
|
|
def getinfo(self):
|
|
|
|
return (self.format, self.width, self.height, self.packfactor,\
|
|
|
|
self.c0bits, self.c1bits, self.c2bits, self.offset, \
|
|
|
|
self.chrompack)
|
|
|
|
|
1992-08-20 08:51:47 -03:00
|
|
|
# reopen() raises Error if the header is bad (which can only
|
1991-12-03 12:50:00 -04:00
|
|
|
# happen if the file was written to since opened).
|
|
|
|
|
1992-08-20 08:51:47 -03:00
|
|
|
def reopen(self):
|
1991-12-03 12:50:00 -04:00
|
|
|
self.fp.seek(0)
|
|
|
|
x = self.initfp(self.fp, self.filename)
|
|
|
|
|
1992-08-20 08:51:47 -03:00
|
|
|
def rewind(self):
|
|
|
|
if self.hascache:
|
|
|
|
self.frameno = 0
|
|
|
|
else:
|
|
|
|
self.reopen()
|
|
|
|
|
1992-02-28 11:59:23 -04:00
|
|
|
def position(self):
|
|
|
|
if self.frameno >= len(self.framecache):
|
|
|
|
raise EOFError
|
|
|
|
self.fp.seek(self.framecache[self.frameno][0])
|
|
|
|
|
1991-12-03 12:50:00 -04:00
|
|
|
# getnextframe() raises EOFError (built-in) if there is no next frame,
|
|
|
|
# or if the next frame is broken.
|
|
|
|
# So to getnextframeheader(), getnextframedata() and skipnextframe().
|
|
|
|
|
|
|
|
def getnextframe(self):
|
|
|
|
time, size, chromsize = self.getnextframeheader()
|
|
|
|
data, chromdata = self.getnextframedata(size, chromsize)
|
|
|
|
return time, data, chromdata
|
|
|
|
|
1992-08-20 08:51:47 -03:00
|
|
|
def getnextframedata(self, size, chromsize):
|
1992-02-28 11:59:23 -04:00
|
|
|
if self.hascache:
|
|
|
|
self.position()
|
|
|
|
self.frameno = self.frameno + 1
|
1991-12-03 12:50:00 -04:00
|
|
|
data = self.fp.read(size)
|
|
|
|
if len(data) <> size: raise EOFError
|
|
|
|
if chromsize:
|
|
|
|
chromdata = self.fp.read(chromsize)
|
|
|
|
if len(chromdata) <> chromsize: raise EOFError
|
|
|
|
else:
|
|
|
|
chromdata = None
|
|
|
|
#
|
|
|
|
return data, chromdata
|
|
|
|
|
|
|
|
def skipnextframe(self):
|
|
|
|
time, size, chromsize = self.getnextframeheader()
|
|
|
|
self.skipnextframedata(size, chromsize)
|
|
|
|
return time
|
|
|
|
|
1992-08-20 08:51:47 -03:00
|
|
|
def skipnextframedata(self, size, chromsize):
|
1992-02-28 11:59:23 -04:00
|
|
|
if self.hascache:
|
|
|
|
self.frameno = self.frameno + 1
|
|
|
|
return
|
1991-12-03 12:50:00 -04:00
|
|
|
# Note that this won't raise EOFError for a partial frame.
|
|
|
|
try:
|
1992-02-11 10:45:43 -04:00
|
|
|
self.fp.seek(size + chromsize, 1) # Relative seek
|
1991-12-03 12:50:00 -04:00
|
|
|
except:
|
|
|
|
# Assume it's a pipe -- read the data to discard it
|
1992-02-11 10:45:43 -04:00
|
|
|
dummy = self.fp.read(size + chromsize)
|
1991-12-03 12:50:00 -04:00
|
|
|
|
|
|
|
def getnextframeheader(self):
|
1992-02-28 11:59:23 -04:00
|
|
|
if self.hascache:
|
|
|
|
if self.frameno >= len(self.framecache):
|
|
|
|
raise EOFError
|
|
|
|
return self.framecache[self.frameno][1]
|
1991-12-03 12:50:00 -04:00
|
|
|
line = self.fp.readline()
|
|
|
|
if not line:
|
1992-02-28 11:59:23 -04:00
|
|
|
self.hascache = 1
|
1991-12-03 12:50:00 -04:00
|
|
|
raise EOFError
|
|
|
|
#
|
|
|
|
w, h, pf = self.width, self.height, self.packfactor
|
|
|
|
try:
|
|
|
|
x = eval(line[:-1])
|
|
|
|
if type(x) in (type(0), type(0.0)):
|
|
|
|
time = x
|
1992-02-11 10:45:43 -04:00
|
|
|
if pf == 0:
|
1991-12-03 12:50:00 -04:00
|
|
|
size = w * h * 4
|
|
|
|
else:
|
|
|
|
size = (w/pf) * (h/pf)
|
1992-02-11 10:45:43 -04:00
|
|
|
elif len(x) == 2:
|
1991-12-03 12:50:00 -04:00
|
|
|
time, size = x
|
|
|
|
cp = self.chrompack
|
|
|
|
if cp:
|
|
|
|
cw = (w + cp - 1) / cp
|
|
|
|
ch = (h + cp - 1) / cp
|
|
|
|
chromsize = 2 * cw * ch
|
|
|
|
else:
|
|
|
|
chromsize = 0
|
|
|
|
else:
|
|
|
|
time, size, chromsize = x
|
|
|
|
except:
|
|
|
|
raise Error, self.filename + ': bad frame header'
|
1992-02-28 11:59:23 -04:00
|
|
|
cdata = (self.fp.tell(), (time, size, chromsize))
|
|
|
|
self.framecache.append(cdata)
|
1991-12-03 12:50:00 -04:00
|
|
|
return time, size, chromsize
|
|
|
|
|
|
|
|
def shownextframe(self):
|
|
|
|
time, data, chromdata = self.getnextframe()
|
|
|
|
self.showframe(data, chromdata)
|
|
|
|
return time
|
|
|
|
|
1992-08-20 08:51:47 -03:00
|
|
|
def showframe(self, data, chromdata):
|
1991-12-03 12:50:00 -04:00
|
|
|
w, h, pf = self.width, self.height, self.packfactor
|
1991-12-03 12:52:40 -04:00
|
|
|
if not self.colormapinited:
|
|
|
|
self.initcolormap()
|
1991-12-03 12:50:00 -04:00
|
|
|
factor = self.magnify
|
|
|
|
if pf: factor = factor * pf
|
1992-02-28 11:59:23 -04:00
|
|
|
if chromdata and not self.skipchrom:
|
1991-12-03 12:50:00 -04:00
|
|
|
cp = self.chrompack
|
|
|
|
cw = (w+cp-1)/cp
|
|
|
|
ch = (h+cp-1)/cp
|
|
|
|
gl.rectzoom(factor*cp, factor*cp)
|
|
|
|
gl.pixmode(GL.PM_SIZE, 16)
|
1991-12-03 12:52:40 -04:00
|
|
|
gl.writemask(self.mask - ((1 << self.c0bits) - 1))
|
1991-12-03 12:50:00 -04:00
|
|
|
gl.lrectwrite(self.xorigin, self.yorigin, \
|
|
|
|
self.xorigin + cw - 1, self.yorigin + ch - 1, \
|
|
|
|
chromdata)
|
|
|
|
#
|
|
|
|
if pf:
|
1991-12-03 12:52:40 -04:00
|
|
|
gl.writemask((1 << self.c0bits) - 1)
|
1991-12-03 12:50:00 -04:00
|
|
|
gl.pixmode(GL.PM_SIZE, 8)
|
|
|
|
gl.rectzoom(factor, factor)
|
|
|
|
w = w/pf
|
|
|
|
h = h/pf
|
|
|
|
gl.lrectwrite(self.xorigin, self.yorigin, \
|
|
|
|
self.xorigin + w - 1, self.yorigin + h - 1, data)
|
|
|
|
|
|
|
|
def initcolormap(self):
|
|
|
|
self.colormapinited = 1
|
1992-02-11 10:45:43 -04:00
|
|
|
if self.format == 'rgb':
|
|
|
|
gl.RGBmode()
|
|
|
|
gl.gconfig()
|
1992-08-21 09:41:23 -03:00
|
|
|
gl.RGBcolor(200, 200, 200)
|
|
|
|
gl.clear()
|
1992-02-11 10:45:43 -04:00
|
|
|
return
|
|
|
|
gl.cmode()
|
|
|
|
gl.gconfig()
|
1992-02-28 11:59:23 -04:00
|
|
|
self.skipchrom = 0
|
1992-08-20 08:51:47 -03:00
|
|
|
if not self.quiet:
|
|
|
|
sys.stderr.write('Initializing color map...')
|
1992-02-28 11:59:23 -04:00
|
|
|
self.initcmap()
|
1992-08-20 08:51:47 -03:00
|
|
|
if not self.quiet:
|
|
|
|
sys.stderr.write(' Done.\n')
|
1991-12-03 12:52:40 -04:00
|
|
|
if self.offset == 0:
|
1992-02-11 10:45:43 -04:00
|
|
|
gl.color(0x800)
|
1992-02-28 11:59:23 -04:00
|
|
|
gl.clear()
|
1992-02-11 10:45:43 -04:00
|
|
|
self.mask = 0x7ff
|
1991-12-03 12:52:40 -04:00
|
|
|
else:
|
1992-02-11 10:45:43 -04:00
|
|
|
self.mask = 0xfff
|
1991-12-03 12:52:40 -04:00
|
|
|
gl.clear()
|
1991-12-03 12:50:00 -04:00
|
|
|
|
|
|
|
|
1992-02-28 11:59:23 -04:00
|
|
|
def initcmap(self):
|
|
|
|
maxbits = gl.getgdesc(GL.GD_BITS_NORM_SNG_CMODE)
|
|
|
|
if maxbits > 11:
|
|
|
|
maxbits = 11
|
|
|
|
c0bits, c1bits, c2bits = self.c0bits, self.c1bits, self.c2bits
|
|
|
|
if c0bits+c1bits+c2bits > maxbits:
|
|
|
|
if self.fallback and c0bits < maxbits:
|
|
|
|
# Cannot display film in this mode, use mono
|
|
|
|
self.skipchrom = 1
|
|
|
|
c1bits = c2bits = 0
|
|
|
|
self.convcolor = conv_grey
|
1991-12-03 12:50:00 -04:00
|
|
|
else:
|
1992-02-28 11:59:23 -04:00
|
|
|
raise Error, 'Sorry, '+`maxbits`+ \
|
|
|
|
' bits max on this machine'
|
|
|
|
maxc0 = 1 << c0bits
|
|
|
|
maxc1 = 1 << c1bits
|
|
|
|
maxc2 = 1 << c2bits
|
|
|
|
if self.offset == 0 and maxbits == 11:
|
|
|
|
offset = 2048
|
|
|
|
else:
|
|
|
|
offset = self.offset
|
|
|
|
if maxbits <> 11:
|
|
|
|
offset = offset & ((1<<maxbits)-1)
|
|
|
|
#for i in range(512, MAXMAP):
|
|
|
|
# gl.mapcolor(i, 0, 0, 0)
|
|
|
|
#void = gl.qtest() # Should be gl.gflush()
|
|
|
|
for c0 in range(maxc0):
|
|
|
|
c0v = c0/float(maxc0-1)
|
|
|
|
for c1 in range(maxc1):
|
|
|
|
if maxc1 == 1:
|
|
|
|
c1v = 0
|
1991-12-03 12:50:00 -04:00
|
|
|
else:
|
1992-02-28 11:59:23 -04:00
|
|
|
c1v = c1/float(maxc1-1)
|
|
|
|
for c2 in range(maxc2):
|
|
|
|
if maxc2 == 1:
|
|
|
|
c2v = 0
|
|
|
|
else:
|
|
|
|
c2v = c2/float(maxc2-1)
|
|
|
|
index = offset + c0 + (c1<<c0bits) + \
|
|
|
|
(c2 << (c0bits+c1bits))
|
|
|
|
rv, gv, bv = self.convcolor( \
|
|
|
|
c0v, c1v, c2v)
|
|
|
|
r, g, b = int(rv*255.0), \
|
|
|
|
int(gv*255.0), int(bv*255.0)
|
|
|
|
if index < MAXMAP:
|
|
|
|
gl.mapcolor(index, r, g, b)
|
|
|
|
void = gl.gflush()
|
|
|
|
|
|
|
|
#
|
|
|
|
# A set of routines to grab images from windows
|
|
|
|
#
|
|
|
|
def grab_rgb(w, h, pf):
|
|
|
|
if gl.getdisplaymode() <> DMRGB:
|
|
|
|
raise Error, 'Sorry, can only grab rgb in single-buf rgbmode'
|
|
|
|
if pf <> 1 and pf <> 0:
|
|
|
|
raise Error, 'Sorry, only grab with packfactor=1'
|
|
|
|
return gl.lrectread(0, 0, w-1, h-1), None
|
|
|
|
|
|
|
|
def grab_rgb8(w, h, pf):
|
|
|
|
if gl.getdisplaymode() <> DMRGB:
|
|
|
|
raise Error, 'Sorry, can only grab rgb in single-buf rgbmode'
|
|
|
|
if pf <> 1 and pf <> 0:
|
|
|
|
raise Error, 'Sorry, can only grab with packfactor=1'
|
|
|
|
r = gl.getgdesc(GL.GD_BITS_NORM_SNG_RED)
|
|
|
|
g = gl.getgdesc(GL.GD_BITS_NORM_SNG_GREEN)
|
|
|
|
b = gl.getgdesc(GL.GD_BITS_NORM_SNG_BLUE)
|
|
|
|
if (r,g,b) <> (3,3,2):
|
|
|
|
raise Error, 'Sorry, can only grab rgb8 on 8-bit Indigo'
|
|
|
|
# Dirty Dirty here. Set buffer to cmap mode, grab image and set it back
|
|
|
|
gl.cmode()
|
|
|
|
gl.gconfig()
|
|
|
|
gl.pixmode(GL.PM_SIZE, 8)
|
|
|
|
data = gl.lrectread(0, 0, w-1, h-1)
|
|
|
|
data = data[:w*h] # BUG FIX for python lrectread
|
|
|
|
gl.RGBmode()
|
|
|
|
gl.gconfig()
|
|
|
|
gl.pixmode(GL.PM_SIZE, 32)
|
|
|
|
return data, None
|
|
|
|
|
|
|
|
def grab_grey(w, h, pf):
|
|
|
|
raise Error, 'Sorry, grabbing grey not implemented'
|
|
|
|
|
|
|
|
def grab_yiq(w, h, pf):
|
|
|
|
raise Error, 'Sorry, grabbing yiq not implemented'
|
|
|
|
|
|
|
|
def grab_hls(w, h, pf):
|
|
|
|
raise Error, 'Sorry, grabbing hls not implemented'
|
|
|
|
|
|
|
|
def grab_hsv(w, h, pf):
|
|
|
|
raise Error, 'Sorry, grabbing hsv not implemented'
|
|
|
|
|
|
|
|
#
|
|
|
|
# The class VoutFile is not as well-designed (and tested) as VinFile.
|
|
|
|
# Notably it will accept almost any garbage and write it to the video
|
|
|
|
# output file
|
|
|
|
#
|
1992-08-18 11:16:21 -03:00
|
|
|
class VoutFile:
|
1992-02-28 11:59:23 -04:00
|
|
|
def init(self, filename):
|
|
|
|
if filename == '-':
|
|
|
|
return self.initfp(sys.stdout, filename)
|
|
|
|
else:
|
|
|
|
return self.initfp(open(filename,'w'), filename)
|
|
|
|
|
|
|
|
def initfp(self, fp, filename):
|
|
|
|
self.fp = fp
|
|
|
|
self.format = 'grey'
|
|
|
|
self.width = self.height = 0
|
|
|
|
self.packfactor = 1
|
|
|
|
self.c0bits = 8
|
|
|
|
self.c1bits = self.c2bits = 0
|
|
|
|
self.offset = 0
|
|
|
|
self.chrompack = 0
|
|
|
|
self.headerwritten = 0
|
|
|
|
return self
|
|
|
|
|
|
|
|
def close(self):
|
|
|
|
self.fp.close()
|
1992-08-18 14:00:51 -03:00
|
|
|
x = self.initfp(None, None)
|
1992-02-28 11:59:23 -04:00
|
|
|
|
1992-08-20 08:51:47 -03:00
|
|
|
def getinfo(self):
|
|
|
|
return (self.format, self.width, self.height, self.packfactor,\
|
|
|
|
self.c0bits, self.c1bits, self.c2bits, self.offset, \
|
|
|
|
self.chrompack)
|
|
|
|
|
1992-02-28 11:59:23 -04:00
|
|
|
def setinfo(self, values):
|
|
|
|
self.format, self.width, self.height, self.packfactor,\
|
|
|
|
self.c0bits, self.c1bits, self.c2bits, self.offset, \
|
|
|
|
self.chrompack = values
|
|
|
|
|
|
|
|
def writeheader(self):
|
|
|
|
self.headerwritten = 1
|
|
|
|
if self.format == 'rgb':
|
|
|
|
self.packfactor = 0
|
|
|
|
elif self.packfactor == 0:
|
|
|
|
self.packfactor = 1
|
|
|
|
self.fp.write('CMIF video 3.0\n')
|
|
|
|
if self.format == 'rgb':
|
|
|
|
data = ('rgb', 0)
|
|
|
|
elif self.format == 'grey':
|
1992-08-20 08:51:47 -03:00
|
|
|
data = ('grey', self.c0bits)
|
1992-02-28 11:59:23 -04:00
|
|
|
else:
|
|
|
|
data = (self.format, (self.c0bits, self.c1bits, \
|
|
|
|
self.c2bits, self.chrompack, self.offset))
|
|
|
|
self.fp.write(`data`+'\n')
|
|
|
|
data = (self.width, self.height, self.packfactor)
|
|
|
|
self.fp.write(`data`+'\n')
|
|
|
|
try:
|
|
|
|
self._grabber = eval('grab_' + self.format)
|
|
|
|
except:
|
|
|
|
raise Error, 'unknown colorsys: ' + self.format
|
|
|
|
|
|
|
|
def writeframeheader(self, data):
|
|
|
|
if not self.headerwritten:
|
|
|
|
raise Error, 'Writing frame data before header'
|
|
|
|
# XXXX Should we sanity check here?
|
|
|
|
self.fp.write(`data`+'\n')
|
1991-12-03 12:50:00 -04:00
|
|
|
|
1992-02-28 11:59:23 -04:00
|
|
|
def writeframedata(self, data, chromdata):
|
|
|
|
# XXXX Check sizes here
|
|
|
|
self.fp.write(data)
|
|
|
|
if chromdata:
|
|
|
|
self.fp.write(chromdata)
|
1991-12-03 12:50:00 -04:00
|
|
|
|
1992-02-28 11:59:23 -04:00
|
|
|
def writeframe(self, time, data, chromdata):
|
|
|
|
if chromdata:
|
|
|
|
clen = len(chromdata)
|
|
|
|
else:
|
|
|
|
clen = 0
|
|
|
|
self.writeframeheader((time, len(data), clen))
|
|
|
|
self.writeframedata(data, chromdata)
|
|
|
|
|
|
|
|
def grabframe(self):
|
|
|
|
return self._grabber(self.width, self.height, self.packfactor)
|
|
|
|
|
1991-12-03 12:50:00 -04:00
|
|
|
def test():
|
1992-02-11 10:45:43 -04:00
|
|
|
import sys, time
|
1991-12-03 12:50:00 -04:00
|
|
|
filename = 'film.video'
|
|
|
|
if sys.argv[1:]: filename = sys.argv[1]
|
|
|
|
vin = VinFile().init(filename)
|
1992-02-11 10:45:43 -04:00
|
|
|
print 'File: ', filename
|
1991-12-03 12:52:40 -04:00
|
|
|
print 'Version: ', vin.version
|
1992-02-11 10:45:43 -04:00
|
|
|
print 'Size: ', vin.width, 'x', vin.height
|
|
|
|
print 'Pack: ', vin.packfactor, '; chrom:', vin.chrompack
|
|
|
|
print 'Bits: ', vin.c0bits, vin.c1bits, vin.c2bits
|
|
|
|
print 'Format: ', vin.format
|
|
|
|
print 'Offset: ', vin.offset
|
1991-12-03 12:50:00 -04:00
|
|
|
gl.foreground()
|
|
|
|
gl.prefsize(vin.width, vin.height)
|
1992-02-11 10:45:43 -04:00
|
|
|
wid = gl.winopen(filename)
|
|
|
|
vin.initcolormap()
|
|
|
|
t0 = time.millitimer()
|
|
|
|
while 1:
|
|
|
|
try:
|
|
|
|
t, data, chromdata = vin.getnextframe()
|
|
|
|
except EOFError:
|
|
|
|
break
|
|
|
|
dt = t + t0 - time.millitimer()
|
|
|
|
if dt > 0:
|
|
|
|
time.millisleep(dt)
|
|
|
|
vin.showframe(data, chromdata)
|
|
|
|
print 'Done.'
|
|
|
|
time.sleep(2)
|
1992-02-28 11:59:23 -04:00
|
|
|
|