Tool for automatically syncing a directory to a DaVinci Resolve bin.
Resolve is an amazing NLE but lacks a lot of the basic functionality and polish that can enable quick production. I created this to fix those gaps and speed up my YouTube workflow.
- Set your Resolve External Scripting Setting setting to Local.
- Start Resolve and open a project (the importer works with the opened project).
- Start the importer.
- Pick a directory to sync.
- Pick a bin to sync that directory to.
- Click "Start Auto Importer".
For more detailed instructions, screenshots, and info on the advanced settings, read the How to Use Instructions Notion Page.
Test with ("npm i nodemon" first):
nodemon .\resolveAdvancedImporter.py --ignore *json
Create Windows exe with:
pyinstaller -F --noconsole --icon=resolveImporter.ico .\resolveAdvancedImporter.py && copy config.json dist\config.json && ren dist "Resolve Advanced Importer"
Create OSX app with:
pyinstaller -F --noconsole --icon=resolveImporter.ico ./resolveAdvancedImporter.py && cp config.json dist/resolveAdvancedImporter.app/Contents/MacOS/config.json && mv dist "Resolve Advanced Importer"