├── .gitignore ├── Examples ├── 1_sorted_timeline_from_folder.lua ├── 1_sorted_timeline_from_folder.py ├── 2_compositions_from_timeline_clips.lua ├── 2_compositions_from_timeline_clips.py ├── 3_grade_and_render_all_timelines.lua ├── 3_grade_and_render_all_timelines.py ├── 4_display_project_and_folder_tree.lua ├── 4_display_project_and_folder_tree.py ├── 5_get_project_information.lua ├── 5_get_project_information.py └── python_get_resolve.py ├── Modules └── DaVinciResolveScript.py ├── README.md ├── docs ├── .nojekyll ├── README.md └── index.html └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /Examples/1_sorted_timeline_from_folder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diop/davinci-resolve-api/HEAD/Examples/1_sorted_timeline_from_folder.lua -------------------------------------------------------------------------------- /Examples/1_sorted_timeline_from_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diop/davinci-resolve-api/HEAD/Examples/1_sorted_timeline_from_folder.py -------------------------------------------------------------------------------- /Examples/2_compositions_from_timeline_clips.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diop/davinci-resolve-api/HEAD/Examples/2_compositions_from_timeline_clips.lua -------------------------------------------------------------------------------- /Examples/2_compositions_from_timeline_clips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diop/davinci-resolve-api/HEAD/Examples/2_compositions_from_timeline_clips.py -------------------------------------------------------------------------------- /Examples/3_grade_and_render_all_timelines.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diop/davinci-resolve-api/HEAD/Examples/3_grade_and_render_all_timelines.lua -------------------------------------------------------------------------------- /Examples/3_grade_and_render_all_timelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diop/davinci-resolve-api/HEAD/Examples/3_grade_and_render_all_timelines.py -------------------------------------------------------------------------------- /Examples/4_display_project_and_folder_tree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diop/davinci-resolve-api/HEAD/Examples/4_display_project_and_folder_tree.lua -------------------------------------------------------------------------------- /Examples/4_display_project_and_folder_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diop/davinci-resolve-api/HEAD/Examples/4_display_project_and_folder_tree.py -------------------------------------------------------------------------------- /Examples/5_get_project_information.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diop/davinci-resolve-api/HEAD/Examples/5_get_project_information.lua -------------------------------------------------------------------------------- /Examples/5_get_project_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diop/davinci-resolve-api/HEAD/Examples/5_get_project_information.py -------------------------------------------------------------------------------- /Examples/python_get_resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diop/davinci-resolve-api/HEAD/Examples/python_get_resolve.py -------------------------------------------------------------------------------- /Modules/DaVinciResolveScript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diop/davinci-resolve-api/HEAD/Modules/DaVinciResolveScript.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diop/davinci-resolve-api/HEAD/README.md -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diop/davinci-resolve-api/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diop/davinci-resolve-api/HEAD/docs/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/diop/davinci-resolve-api/HEAD/package.json --------------------------------------------------------------------------------