├── .gitignore ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Makefile ├── README.md ├── _config.yml ├── docs ├── feed.xml └── index.md └── examples ├── lua ├── 1_sorted_timeline_from_folder.lua ├── 2_compositions_from_timeline_clips.lua ├── 3_grade_and_render_all_timelines.lua ├── 4_display_project_and_folder_tree.lua ├── 5_get_project_information.lua ├── 6_get_current_media_thumbnail.lua └── 7_add_subclips_to_timeline.lua └── python ├── 1_sorted_timeline_from_folder.py ├── 2_compositions_from_timeline_clips.py ├── 3_grade_and_render_all_timelines.py ├── 4_display_project_and_folder_tree.py ├── 5_get_project_information.py ├── 6_get_current_media_thumbnail.py ├── 7_add_subclips_to_timeline.py └── python_get_resolve.py /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.1 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | all: dev 2 | 3 | dev: 4 | bundle exec jekyll serve --livereload 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/_config.yml -------------------------------------------------------------------------------- /docs/feed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/docs/feed.xml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/docs/index.md -------------------------------------------------------------------------------- /examples/lua/1_sorted_timeline_from_folder.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/examples/lua/1_sorted_timeline_from_folder.lua -------------------------------------------------------------------------------- /examples/lua/2_compositions_from_timeline_clips.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/examples/lua/2_compositions_from_timeline_clips.lua -------------------------------------------------------------------------------- /examples/lua/3_grade_and_render_all_timelines.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/examples/lua/3_grade_and_render_all_timelines.lua -------------------------------------------------------------------------------- /examples/lua/4_display_project_and_folder_tree.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/examples/lua/4_display_project_and_folder_tree.lua -------------------------------------------------------------------------------- /examples/lua/5_get_project_information.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/examples/lua/5_get_project_information.lua -------------------------------------------------------------------------------- /examples/lua/6_get_current_media_thumbnail.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/examples/lua/6_get_current_media_thumbnail.lua -------------------------------------------------------------------------------- /examples/lua/7_add_subclips_to_timeline.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/examples/lua/7_add_subclips_to_timeline.lua -------------------------------------------------------------------------------- /examples/python/1_sorted_timeline_from_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/examples/python/1_sorted_timeline_from_folder.py -------------------------------------------------------------------------------- /examples/python/2_compositions_from_timeline_clips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/examples/python/2_compositions_from_timeline_clips.py -------------------------------------------------------------------------------- /examples/python/3_grade_and_render_all_timelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/examples/python/3_grade_and_render_all_timelines.py -------------------------------------------------------------------------------- /examples/python/4_display_project_and_folder_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/examples/python/4_display_project_and_folder_tree.py -------------------------------------------------------------------------------- /examples/python/5_get_project_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/examples/python/5_get_project_information.py -------------------------------------------------------------------------------- /examples/python/6_get_current_media_thumbnail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/examples/python/6_get_current_media_thumbnail.py -------------------------------------------------------------------------------- /examples/python/7_add_subclips_to_timeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/examples/python/7_add_subclips_to_timeline.py -------------------------------------------------------------------------------- /examples/python/python_get_resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deric/DaVinciResolve-API-Docs/HEAD/examples/python/python_get_resolve.py --------------------------------------------------------------------------------