From: Jack Jansen Date: Tue, 28 Sep 1993 15:29:18 +0000 (+0000) Subject: Added ability to edit compressed movies. X-Git-Tag: v1.0.1~210 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=dbf71b7b4b3cbce6ad9b94f50ef4ebb8baec1265;p=thirdparty%2FPython%2Fcpython.git Added ability to edit compressed movies. --- diff --git a/Demo/sgi/video/Vedit.py b/Demo/sgi/video/Vedit.py index d5ef365ae27e..43a67c816f00 100755 --- a/Demo/sgi/video/Vedit.py +++ b/Demo/sgi/video/Vedit.py @@ -141,6 +141,9 @@ class Editor: if self.vout.getinfo() <> self.vin.getinfo(): print 'Copying info...' self.vout.setinfo(self.vin.getinfo()) + if self.vin.format == 'compress': + self.vout.setcompressheader(\ + self.vin.getcompressheader()) self.vout.put(data) self.oshow() self.ishow()