cpython/Demo/sgi/video/vinfo.py

71 lines
1.3 KiB
Python
Raw Normal View History

1991-10-30 07:52:48 -04:00
from gl import *
from GL import *
from DEVICE import *
import time
import sys
class Struct(): pass
epoch = Struct()
EndOfFile = 'End of file'
bye = 'bye'
1991-11-04 10:30:51 -04:00
def openvideo(filename):
f = open(filename, 'r')
line = f.readline()
if not line: raise EndOfFile
if line[:4] = 'CMIF': line = f.readline()
x = eval(line[:-1])
if len(x) = 3: w, h, pf = x
else: w, h = x; pf = 2
return f, w, h, pf
def loadframe(f, w, h, pf):
line = f.readline()
if line = '':
1991-10-30 07:52:48 -04:00
raise EndOfFile
1991-11-04 10:30:51 -04:00
x = eval(line[:-1])
if type(x) = type(0) or type(x) = type(0.0):
tijd = x
if pf = 0:
size = w*h*4
else:
size = (w/pf) * (h/pf)
else:
tijd, size = x
f.seek(size, 1)
1991-10-30 07:52:48 -04:00
return tijd
1991-11-04 10:30:51 -04:00
1991-10-30 07:52:48 -04:00
def saveframe(name, w, h, tijd, data):
f = open(name, 'w')
f.write(`w,h` + '\n')
f.write(`tijd` + '\n')
f.write(data)
f.close()
1991-11-04 10:30:51 -04:00
1991-10-30 07:52:48 -04:00
def main():
if len(sys.argv) > 1:
names = sys.argv[1:]
else:
names = ['film.video']
for name in names:
1991-11-04 10:30:51 -04:00
f, w, h, pf = openvideo(name)
print name, ':', w, 'x', h, '; pf =', pf
1991-10-30 07:52:48 -04:00
num = 0
try:
while 1:
try:
1991-11-04 10:30:51 -04:00
tijd = loadframe(f, w, h, pf)
1991-10-30 07:52:48 -04:00
print '\t', tijd,
num = num + 1
if num % 8 = 0:
print
except EndOfFile:
raise bye
except bye:
pass
if num % 8 <> 0:
print
f.close()
main()