This script collects the footage from your script and saves it in a target directory. It also copies the script and relinks all the files to the new directory.
collectFiles
Updated: 22 September 2011
Author: farabute
Compatible Nuke versions: 6.1 or later
Compatibility: Windows
Supported Video Files:
'mov', 'avi', 'mpeg', 'mp4', 'R3D'
Description:
Collect files of the script
Tutorials:
www.marianoantico.blogspot.com
www.vimeo.com/29200474
Installation Notes:
1. Copy "collectFiles.py" to nuke plugins directory (Example: "C:\Program Files\Nuke6.1v1\plugins")
2. Open "Init.py" located on "C:\Program Files\Nuke6.1v1\plugins"
3. And paste this:
import collectFiles
4. Save it and restart nuke
5. Open the Script Command window and paste this:
collectFiles.collectFiles()
6. Check the python button and press ok
Create Menu Node:
1. Open "Menu.py" located on "C:\Program Files\Nuke6.1v1\plugins"
2. And paste this at the end:
#Collect Files Menu Node
collectMenu = nuke.menu("Nodes").addMenu("Collect_Files")
collectMenu.addCommand('Collect Files', 'collectFiles.collectFiles()')
collectMenu.addCommand('Help', 'collectFiles.myBlog()')
Run:
collectFiles()