Return to Snippet

Revision: 30734
at August 20, 2010 10:06 by throb


Initial Code
import nuke, subprocess
f = nuke.filename( nuke.selectedNode(), nuke.REPLACE )
rvls = 'Z:/SYNC/RV/3.8.7/win/x64/bin/rvls.exe'
cmd = '%s -x %s' % ( rvls, f )
info = subprocess.Popen( cmd,stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE  )
print info.communicate()

Initial URL


Initial Description


Initial Title
run rvls from a python subprocess

Initial Tags
python

Initial Language
Python