View Full Version : A tool to kill AND re-generate QT proxies for full project
Gunleik Groven
11-04-2010, 03:27 PM
All ideas appreachiated (while I manually do it)
Get rid of 60 days of QT proxies and generate new ones...
G
Dustin Cross
11-04-2010, 03:43 PM
Redline and a simple shell script.
Dusty
Henk van den Doel
11-04-2010, 04:34 PM
Can't you send an XML to redcinex with mikaels XML tool, and then when the timeline in redcinex is filled, select all in timeline. Then use your QuickTime wrapper setting to export all in timeline..
Nick Shaw
11-04-2010, 05:25 PM
Clipfinder can delete proxies with the contextual menu. Not tested Clipfinder re-building proxies recently, but there were REDline issues last time I tried.
Gunleik Groven
11-04-2010, 05:37 PM
Thanks Nick.
That did it.
Can redline be pointed towards a toplevel directory and recreate proxies for all the underlying directories?
G
Dustin Cross
11-04-2010, 06:04 PM
Something like this should work:
for FILE in $(find /PATH_TO_TOP_LEVEL_DIRECTOR/ -name *_001.R3D 2>&1 | awk -F "_001.R3D" '{print $1}'); do redline -i `echo $FILE"_001.R3D"` -w 10 --useMeta; echo "Finished with $FILE" ; done
Dusty