]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
The usual cosmetic changes after Jack is done...
authorGuido van Rossum <guido@python.org>
Thu, 18 Feb 1993 18:09:18 +0000 (18:09 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 18 Feb 1993 18:09:18 +0000 (18:09 +0000)
Demo/sgi/video/README
Demo/sgi/video/video2rgb.py

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