File: run.py

package info (click to toggle)
openimageio 2.2.10.1%2Bdfsg-1%2Bdeb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 45,344 kB
  • sloc: cpp: 127,812; python: 3,538; sh: 847; makefile: 383; ansic: 2
file content (9 lines) | stat: -rwxr-xr-x 305 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python

outputs = []

for f in [ "sphere.vdb", "sphereCd.vdb" ]:
    vdbfile = os.path.join('src', f)
    exrfile = os.path.splitext(f)[0] + '.exr'
    command += "%s --nowarp --offset -1 -1 -1 --scalest 2 2 %s -o %s\n" % (oiio_app("testtex"), vdbfile, exrfile)
    outputs.append(exrfile)