Script for reconciling proxy clips to full res using a Reverse Proxy Workflow in Apple's Final Cut.
This is a simple Python Script to copy data from source to destination. Gathers the corresponding full res video files for the proxies within a project.
- Create python virtual environment in a folder:
- UNIX:
python3 -m venv env
- WINDOWS:
py -m venv env
- UNIX:
- Activate Environment:
- UNIX:
source env/bin/activate
- WINDOWS:
.\env\Scripts\activate
- UNIX:
- Optional:
python -m pip install --upgrade pip
- Place
copy.py
file in directory - Run Script (within venv):
python copy.py
- Optional: To deactivate virtual environment; within the project directory type
deactivate