Skip to content

Instantly share code, notes, and snippets.

@daz
Last active July 16, 2023 07:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daz/f41261782cd5d99d865930cedc47dde8 to your computer and use it in GitHub Desktop.
Save daz/f41261782cd5d99d865930cedc47dde8 to your computer and use it in GitHub Desktop.
FCP Consolidate tips

If you're having issues with FCP not consolidating a library, you can recursively search the library for files that are aliases, and are linking to certain directory or volume.

This will find anything in the home directory, ~/Desktop, ~/Documents, etc

cd "~/Movies/My Library.fcpbundle"
find . -type l -ls | grep /Users/darren/

This will find anything linked that's on the volume "14TB"

cd "~/Movies/My Library.fcpbundle"
find . -type l -ls | grep 14TB

Then you can right click the event, and consolidate.

Check the offending file is consolidated by selecting it in the FCP event. Consolidating sometimes still doesn't work, you might need to resort to creating a YYYY-MM-DD folder in your Original Media location for the file's created at date, dropping it in there, temporarily moving or renaming the offending file so FCP sees it as missing, then relink it in FCP.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment