Skip to content

Latest commit

 

History

History
17 lines (15 loc) · 769 Bytes

README.md

File metadata and controls

17 lines (15 loc) · 769 Bytes

Reverse Proxy Adapter

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.

Quick Start

  1. Create python virtual environment in a folder:
    • UNIX: python3 -m venv env
    • WINDOWS: py -m venv env
  2. Activate Environment:
    • UNIX: source env/bin/activate
    • WINDOWS: .\env\Scripts\activate
  3. Optional: python -m pip install --upgrade pip
  4. Place copy.py file in directory
  5. Run Script (within venv): python copy.py
  6. Optional: To deactivate virtual environment; within the project directory type deactivate