Welcome to our community

Be a part of something great, join today!

  • Hey all, just changed over the backend after 15 years I figured time to give it a bit of an update, its probably gonna be a bit weird for most of you and i am sure there is a few bugs to work out but it should kinda work the same as before... hopefully :)

REDline and a loop

Marcus Vasques Osorio

Well-known member
Joined
Sep 27, 2007
Messages
301
Reaction score
0
Points
0
Location
Sweden
Website
www.mahvo.com
It is as simple as this:

I find the r3d files with find finder items in automater (files x y z) then I get automater to run this line in terminal????

But how do I run this line in terminal???

REDline -i file X --format 10 --QTsize 1 --QTdir proxy/ --iso 2000 --contrast -1.0

REDline -i file Z --format 10 --QTsize 1 --QTdir proxy/ --iso 2000 --contrast -1.0

REDline -i file Y --format 10 --QTsize 1 --QTdir proxy/ --iso 2000 --contrast -1.0

how do I get this command to go recursively througha file system??? In other words I want all the R3D files in this folder and subfolder to be effected...

Not new to programming bu new to mac :-)

mahvo
 
I can't figure out Automator to save my life, but if you want to just use command line. Go to your .RDC directory in Terminal and run this:

for FILE in */*.R3D ; do redline --format 10 --QTsize 1 --QTdir proxy/ --iso 2000 --contrast -1.0 ; echo "for $FILE" ; done

Hope that helps.


Mahalo,
Dusty
 
Back
Top