Changes

Jump to: navigation, search

Home

574 bytes added, 17:06, 16 February 2011
FRAMES -> VIDEO
</code>
*imagemagick to crop/convert images:
<code>
</code>
*converting through python script
<source lang="python">
from subprocess import call
 
import sys
for i in range(751,6992):
try:
cmd = "dfsp01_%04d.tif -resize 1280x720 /Volumes/Reservoir/Process/dfsp/dfsp%04d.tif"%(i, i)
print "convert " + cmd
retcode = call("convert " + cmd, shell=True)
if retcode < 0:
print >>sys.stderr, "Child was terminated by signal", -retcode
else:
print >>sys.stderr, "Child returned", retcode
except OSError, e:
print >>sys.stderr, "Execution failed:", e
 
</source>
* downsizing 4k frames to HD 1080p (using imagemagick):

Navigation menu