Skip to main content

⚠️ Please note that this topic or post has been archived. The information contained here may no longer be accurate or up-to-date. ⚠️

Export jpgs to shot folders to match raw capture folders

Comments

5 comments

  • Paul Steunebrink
    iv) Store the jpgs in a sub folder to the respective image folder; there is a sub folder option for that in the process recipe
    0
  • Rick Allen
    viewtopic.php?f=46&t=16277

    😄
    0
  • anettleship
    Aha, thanks for the link to the other topic. I hadn't considered Apple script as an alternative to the commandline. I'd definitely like to have a look, how do I obtain this one week demo version you mention?

    Likewising thanks Paul, storing files in subfolders in the image folder is definitely worth mentioning. You still have to copy them from each shot folder to Output, but moving folders is definitely easier than selecting groups of files.

    For the record I've found that the cpio command can be used to replicate directory structures, so if you run the following in the Capture folder:

    find . -name '*.jpg'

    You'll get a list of the jpgs in each folder in Capture. (You can drag and drop the folder to the terminal window to automatically input the Capture folder's path).

    So you can then pipe the results of the find to the cpio command:

    find . -name '*.jpg' | cpio -pdmv ../Output

    the p option tells cpio to take input from the find command.
    the d option creates directories as necessary
    the m option preserves file creation dates
    the v option is for verbose mode, so you can see the file list as it goes

    Another option is to set up Chronosync with a filter for jpg files to backup from Capture to Output.

    I'd file these both under 'fiddly' though.
    0
  • Rick Allen
    https://drive.google.com/file/d/0B_v32s ... sp=sharing

    Will work until 15th of June.

    Place the app in the background scripts folder under the capture one applescripts menu item.

    <home>/Library/Scripts/Capture One Scripts/Background Scripts

    Doesn't work that great when only processing Quickproofs. You need to use a sub folder option if processing more than one recipe.

    Love to get feedback
    0
  • anettleship
    Thanks, I'll give it a try.
    0

Post is closed for comments.