summaryrefslogtreecommitdiffstats
path: root/Demo/sgi
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1993-09-28 15:29:18 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1993-09-28 15:29:18 (GMT)
commitdbf71b7b4b3cbce6ad9b94f50ef4ebb8baec1265 (patch)
tree2af6496538c2c6045948afbe97d8b2ad8a059c29 /Demo/sgi
parent264117295ef1bf76a8606a9d0cc972109e0143e0 (diff)
downloadcpython-dbf71b7b4b3cbce6ad9b94f50ef4ebb8baec1265.zip
cpython-dbf71b7b4b3cbce6ad9b94f50ef4ebb8baec1265.tar.gz
cpython-dbf71b7b4b3cbce6ad9b94f50ef4ebb8baec1265.tar.bz2
Added ability to edit compressed movies.
Diffstat (limited to 'Demo/sgi')
-rwxr-xr-xDemo/sgi/video/Vedit.py3
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()