diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1993-09-28 15:29:18 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1993-09-28 15:29:18 (GMT) |
commit | dbf71b7b4b3cbce6ad9b94f50ef4ebb8baec1265 (patch) | |
tree | 2af6496538c2c6045948afbe97d8b2ad8a059c29 /Demo | |
parent | 264117295ef1bf76a8606a9d0cc972109e0143e0 (diff) | |
download | cpython-dbf71b7b4b3cbce6ad9b94f50ef4ebb8baec1265.zip cpython-dbf71b7b4b3cbce6ad9b94f50ef4ebb8baec1265.tar.gz cpython-dbf71b7b4b3cbce6ad9b94f50ef4ebb8baec1265.tar.bz2 |
Added ability to edit compressed movies.
Diffstat (limited to 'Demo')
-rwxr-xr-x | Demo/sgi/video/Vedit.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Demo/sgi/video/Vedit.py b/Demo/sgi/video/Vedit.py index d5ef365..43a67c8 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() |