The usual cosmetic changes after Jack is done...

This commit is contained in:
Guido van Rossum 1993-02-18 18:09:18 +00:00
parent b05eaf1909
commit 245be3a3c5
2 changed files with 11 additions and 5 deletions

View file

@ -80,7 +80,13 @@ Vaddcache.py add a "cached index" to a video file, for faster playing
Vrecb.py like Vrec.py but uses "burst capture" -- somewhat specialized Vrecb.py like Vrec.py but uses "burst capture" -- somewhat specialized
rgb2video.py combine a sequence of rgb images into a CMIF video file Dsend.py like Vsend.py but sends screen snapshots (to Vreceive.py)
DisplayVideoIn.py Like LiveVideoIn.py but reads screen snapshots
rgb2video.py combine a sequence of rgb image files into a CMIF video file
video2rgb.py split a CMIF video file into a sequence of rgb image files
These modules and files are used by the above programs: These modules and files are used by the above programs:

View file

@ -1,18 +1,18 @@
#! /ufs/guido/bin/sgi/python #! /ufs/guido/bin/sgi/python
# Play CMIF movie files # Convert CMIF movie file(s) to a sequence of rgb images
# Help function # Help function
def help(): def help():
print 'Usage: Vplay [options] [file] ...' print 'Usage: video2rgb [options] [file] ...'
print print
print 'Options:' print 'Options:'
print '-q : quiet, no informative messages' print '-q : quiet, no informative messages'
print '-m : create monochrome (greyscale) image files' print '-m : create monochrome (greyscale) image files'
print '-f prefix : create image files with names "prefix000.rgb"' print '-f prefix : create image files with names "prefix0000.rgb"'
print 'file ... : file(s) to play; default film.video' print 'file ... : file(s) to convert; default film.video'
# Imported modules # Imported modules