Last Updated: 16 July 2024
This package contains a brief introduction to the Scripting API for DaVinci Resolve Studio. Apart from this README.md file, this package contains folders containing the basic import modules for scripting access (DaVinciResolve.py
) and some representative examples.
SetLUT()
andSetCDL()
now use 1-basednodeIndex
parameters.
As with Blackmagic Fusion scripts, user scripts written in Lua and Python programming languages are supported. By default, scripts can be invoked from the Console window in the Fusion page, or via command line. This permission can be changed in Resolve Preferences, to be only from Console, or to be invoked from the local network. Please be aware of the security implications when allowing scripting access from outside of the Resolve application.
DaVinci Resolve scripting requires one of the following to be installed (for all users):
- Lua 5.1
- Python >= 3.6 64-bit
- Python 2.7 64-bit
DaVinci Resolve needs to be running for a script to be invoked.
For a Resolve script to be executed from an external folder, the script needs to know of the API location. You may need to set these environment variables to allow for your Python installation to pick up the appropriate dependencies as shown below:
Mac OS X:
RESOLVE_SCRIPT_API="/Library/Application Support/Blackmagic Design/DaVinci Resolve/Developer/Scripting"
RESOLVE_SCRIPT_LIB="/Applications/DaVinci Resolve/DaVinci Resolve.app/Contents/Libraries/Fusion/fusionscript.so"
PYTHONPATH="$PYTHONPATH:$RESOLVE_SCRIPT_API/Modules/"
Windows:
RESOLVE_SCRIPT_API="%PROGRAMDATA%\Blackmagic Design\DaVinci Resolve\Support\Developer\Scripting"
RESOLVE_SCRIPT_LIB="C:\Program Files\Blackmagic Design\DaVinci Resolve\fusionscript.dll"
PYTHONPATH="%PYTHONPATH%;%RESOLVE_SCRIPT_API%\Modules\"
Linux:
RESOLVE_SCRIPT_API="/opt/resolve/Developer/Scripting"
RESOLVE_SCRIPT_LIB="/opt/resolve/libs/Fusion/fusionscript.so"
PYTHONPATH="$PYTHONPATH:$RESOLVE_SCRIPT_API/Modules/"
(Note: For standard ISO Linux installations, the path above may need to be modified to refer to /home/resolve
instead of /opt/resolve
)
As with Fusion scripts, Resolve scripts can also be invoked via the menu and the Console.
On startup, DaVinci Resolve scans the subfolders in the directories shown below and enumerates the scripts found in the Workspace application menu under Scripts. Place your script under Utility to be listed in all pages, under Comp or Tool to be available in the Fusion page or under folders for individual pages (Edit, Color or Deliver). Scripts under Deliver are additionally listed under render jobs. Placing your script here and invoking it from the menu is the easiest way to use scripts.
Script Locations:
Mac OS X:
- All users:
/Library/Application Support/Blackmagic Design/DaVinci Resolve/Fusion/Scripts
- Specific user:
/Users/<UserName>/Library/Application Support/Blackmagic Design/DaVinci Resolve/Fusion/Scripts
Windows:
- All users:
%PROGRAMDATA%\Blackmagic Design\DaVinci Resolve\Fusion\Scripts
- Specific user:
%APPDATA%\Roaming\Blackmagic Design\DaVinci Resolve\Support\Fusion\Scripts
Linux:
- All users:
/opt/resolve/Fusion/Scripts
(or/home/resolve/Fusion/Scripts/
depending on installation) - Specific user:
~/.local/share/DaVinciResolve/Fusion/Scripts
The interactive Console window allows for an easy way to execute simple scripting commands, to query or modify properties, and to test scripts. The console accepts commands in Python 2.7, Python 3.6, and Lua and evaluates and executes them immediately. For more information on how to use the Console, please refer to the DaVinci Resolve User Manual.
Python example:
#!/usr/bin/env python
import DaVinciResolveScript as dvr_script
resolve = dvr_script.scriptapp("Resolve")
fusion = resolve.Fusion()
projectManager = resolve.GetProjectManager()
projectManager.CreateProject("Hello World")
The resolve
object is the fundamental starting point for scripting via Resolve. As a native object, it can be inspected for further scriptable properties - using table iteration and getmetatable
in Lua and dir
, help
, etc., in Python (among other methods). A notable scriptable object above is fusion
- it allows access to all existing Fusion scripting functionality.
DaVinci Resolve can be launched in a headless mode without the user interface using the -nogui
command line option. When DaVinci Resolve is launched using this option, the user interface is disabled. However, the various scripting APIs will continue to work as expected.
Some commonly used API functions are described below (*). As with the resolve
object, each object is inspectable for properties and functions.
Function | Return Type | Description |
---|---|---|
Fusion() |
Fusion | Returns the Fusion object. Starting point for Fusion scripts. |
GetMediaStorage() |
MediaStorage | Returns the media storage object to query and act on media locations. |
GetProjectManager() |
ProjectManager | Returns the project manager object for currently open database. |
OpenPage(pageName) |
Bool | Switches to indicated page in DaVinci Resolve. Input can be one of ("media", "cut", "edit", "fusion", "color", "fairlight", "deliver"). |
GetCurrentPage() |
string | Returns the page currently displayed in the main window. Returned value can be one of ("media", "cut", "edit", "fusion", "color", "fairlight", "deliver", None). |
GetProductName() |
string | Returns product name. |
GetVersion() |
list | Returns list of product version fields in [major, minor, patch, build, suffix] format. |
GetVersionString() |
string | Returns product version in "major.minor.patch[suffix].build" format. |
LoadLayoutPreset(presetName) |
Bool | Loads UI layout from saved preset named presetName . |
UpdateLayoutPreset(presetName) |
Bool | Overwrites preset named presetName with current UI layout. |
ExportLayoutPreset(presetName, presetFilePath) |
Bool | Exports preset named presetName to path presetFilePath . |
DeleteLayoutPreset(presetName) |
Bool | Deletes preset named presetName . |
SaveLayoutPreset(presetName) |
Bool | Saves current UI layout as a preset named presetName . |
ImportLayoutPreset(presetFilePath, presetName) |
Bool | Imports preset from path presetFilePath . The optional argument presetName specifies how the preset shall be named. If not specified, the preset is named based on the filename. |
Quit() |
None | Quits the Resolve App. |
ImportRenderPreset(presetPath) |
Bool | Import a preset from presetPath (string) and set it as current preset for rendering. |
ExportRenderPreset(presetName, exportPath) |
Bool | Export a preset to a given path (string) if presetName (string) exists. |
ImportBurnInPreset(presetPath) |
Bool | Import a data burn in preset from a given presetPath (string). |
ExportBurnInPreset(presetName, exportPath) |
Bool | Export a data burn in preset to a given exportPath (string) if presetName (string) exists. |
GetKeyframeMode() |
int | Returns the currently set keyframe mode. Refer to Keyframe Mode Information below for details. |
SetKeyframeMode(keyframeMode) |
Bool | Returns True when keyframeMode (enum) is successfully set. Refer to Keyframe Mode Information below for details. |
Function | Return Type | Description |
---|---|---|
ArchiveProject(projectName, filePath, isArchiveSrcMedia=True, isArchiveRenderCache=True, isArchiveProxyMedia=False) |
Bool | Archives project to provided file path with the configuration as provided by the optional arguments. |
CreateProject(projectName) |
Project | Creates and returns a project if projectName (string) is unique, and None if it is not. |
DeleteProject(projectName) |
Bool | Deletes project in the current folder if not currently loaded. |
LoadProject(projectName) |
Project | Loads and returns the project with name = projectName (string) if there is a match found, and None if there is no matching Project. |
GetCurrentProject() |
Project | Returns the currently loaded Resolve project. |
SaveProject() |
Bool | Saves the currently loaded project with its own name. Returns True if successful. |
CloseProject(project) |
Bool | Closes the specified project without saving. |
CreateFolder(folderName) |
Bool | Creates a folder if folderName (string) is unique. |
DeleteFolder(folderName) |
Bool | Deletes the specified folder if it exists. Returns True in case of success. |
GetProjectListInCurrentFolder() |
list | Returns a list of project names in the current folder. |
GetFolderListInCurrentFolder() |
list | Returns a list of folder names in the current folder. |
GotoRootFolder() |
Bool | Opens root folder in database. |
GotoParentFolder() |
Bool | Opens parent folder of current folder in database if current folder has a parent. |
GetCurrentFolder() |
string | Returns the current folder name. |
OpenFolder(folderName) |
Bool | Opens folder under given name. |
ImportProject(filePath, projectName=None) |
Bool | Imports a project from the file path provided with given project name, if any. Returns True if successful. |
ExportProject(projectName, filePath, withStillsAndLUTs=True) |
Bool | Exports project to provided file path, including stills and LUTs if withStillsAndLUTs is True (enabled by default). Returns True in case of success. |
RestoreProject(filePath, projectName=None) |
Bool | Restores a project from the file path provided with given project name, if any. Returns True if successful. |
GetCurrentDatabase() |
dict | Returns a dictionary (with keys 'DbType', 'DbName' and optional 'IpAddress') corresponding to the current database connection. |
GetDatabaseList() |
list of dict | Returns a list of dictionary items (with keys 'DbType', 'DbName' and optional 'IpAddress') corresponding to all the databases added to Resolve. |
SetCurrentDatabase(dbInfo) |
Bool | Switches current database connection to the database specified by the keys below, and closes any open project. |
CreateCloudProject(cloudSettings) |
Project | Creates and returns a cloud project. cloudSettings : Check Cloud Projects Settings subsection below for more information. |
ImportCloudProject(filePath, cloudSettings) |
Bool | Returns True if import cloud project is successful; False otherwise. |
RestoreCloudProject(folderPath, cloudSettings) |
Bool | Returns True if restore cloud project is successful; False otherwise. |
Function | Return Type | Description |
---|---|---|
GetMediaPool() |
MediaPool | Returns the Media Pool object. |
GetTimelineCount() |
int | Returns the number of timelines currently present in the project. |
GetTimelineByIndex(idx) |
Timeline | Returns timeline at the given index, 1 <= idx <= project.GetTimelineCount() . |
GetCurrentTimeline() |
Timeline | Returns the currently loaded timeline. |
SetCurrentTimeline(timeline) |
Bool | Sets given timeline as current timeline for the project. Returns True if successful. |
GetGallery() |
Gallery | Returns the Gallery object. |
GetName() |
string | Returns project name. |
SetName(projectName) |
Bool | Sets project name if given projectName (string) is unique. |
GetPresetList() |
list | Returns a list of presets and their information. |
SetPreset(presetName) |
Bool | Sets preset by given presetName (string) into project. |
AddRenderJob() |
string | Adds a render job based on current render settings to the render queue. Returns a unique job id (string) for the new render job. |
DeleteRenderJob(jobId) |
Bool | Deletes render job for input job id (string). |
DeleteAllRenderJobs() |
Bool | Deletes all render jobs in the queue. |
GetRenderJobList() |
list | Returns a list of render jobs and their information. |
GetRenderPresetList() |
list | Returns a list of render presets and their information. |
StartRendering(jobId1, jobId2, ...) |
Bool | Starts rendering jobs indicated by the input job ids. |
StartRendering([jobIds...], isInteractiveMode=False) |
Bool | Starts rendering jobs indicated by the input job ids. The optional isInteractiveMode , when set, enables error feedback in the UI during rendering. |
StartRendering(isInteractiveMode=False) |
Bool | Starts rendering all queued render jobs. The optional isInteractiveMode , when set, enables error feedback in the UI during rendering. |
StopRendering() |
None | Stops any current render processes. |
IsRenderingInProgress() |
Bool | Returns True if rendering is in progress. |
LoadRenderPreset(presetName) |
Bool | Sets a preset as current preset for rendering if presetName (string) exists. |
SaveAsNewRenderPreset(presetName) |
Bool | Creates new render preset by given name if presetName (string) is unique. |
SetRenderSettings(settings) |
Bool | Sets given settings for rendering. settings is a dict, with support for the keys: Refer to Looking up Render Settings section for information on supported settings. |
GetRenderJobStatus(jobId) |
dict | Returns a dict with job status and completion percentage of the job by given jobId (string). |
GetSetting(settingName) |
string | Returns value of project setting (indicated by settingName , string). Check the section below for more information. |
SetSetting(settingName, settingValue) |
Bool | Sets the project setting (indicated by settingName , string) to the value (settingValue , string). Check the section below for more information. |
GetRenderFormats() |
dict | Returns a dict (format -> file extension) of available render formats. |
GetRenderCodecs(renderFormat) |
dict | Returns a dict (codec description -> codec name) of available codecs for given render format (string). |
GetCurrentRenderFormatAndCodec() |
dict | Returns a dict with currently selected format format and render codec codec . |
SetCurrentRenderFormatAndCodec(format, codec) |
Bool | Sets given render format (string) and render codec (string) as options for rendering. |
GetCurrentRenderMode() |
int | Returns the render mode: 0 - Individual clips, 1 - Single clip. |
SetCurrentRenderMode(renderMode) |
Bool | Sets the render mode. Specify renderMode = 0 for Individual clips, 1 for Single clip. |
GetRenderResolutions(format, codec) |
list of dict | Returns list of resolutions applicable for the given render format (string) and render codec (string). Returns full list of resolutions if no argument is provided. Each element in the list is a dictionary with 2 keys "Width" and "Height". |
RefreshLUTList() |
Bool | Refreshes LUT List. |
GetUniqueId() |
string | Returns a unique ID for the project item. |
InsertAudioToCurrentTrackAtPlayhead(mediaPath, startOffsetInSamples, durationInSamples) |
Bool | Inserts the media specified by mediaPath (string) with startOffsetInSamples (int) and durationInSamples (int) at the playhead on a selected track on the Fairlight page. Returns True if successful, otherwise False. |
LoadBurnInPreset(presetName) |
Bool | Loads user defined data burn in preset for project when supplied presetName (string). Returns true if successful. |
ExportCurrentFrameAsStill(filePath) |
Bool | Exports current frame as still to supplied filePath . filePath must end in a valid export file format. Returns True if successful, False otherwise. |
GetColorGroupsList() |
list | Returns a list of all group objects in the timeline. |
AddColorGroup(groupName) |
ColorGroup | Creates a new ColorGroup. groupName must be a unique string. |
DeleteColorGroup(colorGroup) |
Bool | Deletes the given color group and sets clips to ungrouped. |
Function | Return Type | Description |
---|---|---|
GetMountedVolumeList() |
list | Returns list of folder paths corresponding to mounted volumes displayed in Resolve’s Media Storage. |
GetSubFolderList(folderPath) |
list | Returns list of folder paths in the given absolute folder path. |
GetFileList(folderPath) |
list | Returns list of media and file listings in the given absolute folder path. Note that media listings may be logically consolidated entries. |
RevealInStorage(path) |
Bool | Expands and displays given file/folder path in Resolve’s Media Storage. |
AddItemListToMediaPool(item1, item2, ...) |
list of MediaPoolItem | Adds specified file/folder paths from Media Storage into current Media Pool folder. Input is one or more file/folder paths. Returns a list of the MediaPoolItems created. |
AddItemListToMediaPool([items...]) |
list of MediaPoolItem | Adds specified file/folder paths from Media Storage into current Media Pool folder. Input is an array of file/folder paths. Returns a list of the MediaPoolItems created. |
AddItemListToMediaPool([{itemInfo}, ...]) |
list of MediaPoolItem | Adds list of itemInfos specified as dict of "media", "startFrame" (int), "endFrame" (int) from Media Storage into current Media Pool folder. Returns a list of the MediaPoolItems created. |
AddClipMattesToMediaPool(MediaPoolItem, [paths], stereoEye) |
Bool | Adds specified media files as mattes for the specified MediaPoolItem . stereoEye is an optional argument for specifying which eye to add the matte to for stereo clips ("left" or "right"). Returns True if successful. |
AddTimelineMattesToMediaPool([paths]) |
list of MediaPoolItem | Adds specified media files as timeline mattes in current media pool folder. Returns a list of created MediaPoolItems . |
Function | Return Type | Description |
---|---|---|
GetRootFolder() |
Folder | Returns root Folder of Media Pool. |
AddSubFolder(folder, name) |
Folder | Adds new subfolder under specified Folder object with the given name. |
RefreshFolders() |
Bool | Updates the folders in collaboration mode. |
CreateEmptyTimeline(name) |
Timeline | Adds new timeline with given name. |
AppendToTimeline(clip1, clip2, ...) |
list of TimelineItem | Appends specified MediaPoolItem objects in the current timeline. Returns the list of appended timelineItems . |
AppendToTimeline([clips]) |
list of TimelineItem | Appends specified MediaPoolItem objects in the current timeline. Returns the list of appended timelineItems . |
AppendToTimeline([{clipInfo}, ...]) |
list of TimelineItem | Appends list of clipInfos specified as dict of "mediaPoolItem", "startFrame" (int), "endFrame" (int), (optional) "mediaType" (int; 1 - Video only, 2 - Audio only), "trackIndex" (int) and "recordFrame" (int). Returns the list of appended timelineItems . |
CreateTimelineFromClips(name, clip1, clip2,...) |
Timeline | Creates new timeline with specified name, and appends the specified MediaPoolItem objects. |
CreateTimelineFromClips(name, [clips]) |
Timeline | Creates new timeline with specified name, and appends the specified MediaPoolItem objects. |
CreateTimelineFromClips(name, [{clipInfo}]) |
Timeline | Creates new timeline with specified name, appending the list of clipInfos specified as a dict of "mediaPoolItem", "startFrame" (int), "endFrame" (int), "recordFrame" (int). |
ImportTimelineFromFile(filePath, importOptions) |
Timeline | Creates timeline based on parameters within given file (AAF/EDL/XML/FCPXML/DRT/ADL/OTIO) and optional importOptions dict, with support for the keys: |
- "timelineName": string, specifies the name of the timeline to be created. Not valid for DRT import | ||
- "importSourceClips": Bool, specifies whether source clips should be imported, True by default. Not valid for DRT import | ||
- "sourceClipsPath": string, specifies a filesystem path to search for source clips if the media is inaccessible in their original path and if "importSourceClips" is True | ||
- "sourceClipsFolders": list of Folder, specifies a list of Folder objects to search for source clips if the media is not present in current folder and if "importSourceClips" is False. Not valid for DRT import |
||
- "interlaceProcessing": Bool, specifies whether to enable interlace processing on the imported timeline being created. Valid only for AAF import | ||
DeleteTimelines([timeline]) |
Bool | Deletes specified timelines in the media pool. |
GetCurrentFolder() |
Folder | Returns currently selected Folder. |
SetCurrentFolder(Folder) |
Bool | Sets current folder by given Folder . |
DeleteClips([clips]) |
Bool | Deletes specified clips or timeline mattes in the media pool. |
ImportFolderFromFile(filePath, sourceClipsPath="") |
Bool | Returns true if import from given DRB filePath is successful, false otherwise. sourceClipsPath is a string that specifies a filesystem path to search for source clips if the media is inaccessible in their original path, empty by default. |
DeleteFolders([subfolders]) |
Bool | Deletes specified subfolders in the media pool. |
MoveClips([clips], targetFolder) |
Bool | Moves specified clips to targetFolder . |
MoveFolders([folders], targetFolder) |
Bool | Moves specified folders to targetFolder . |
GetClipMatteList(MediaPoolItem) |
list | Get mattes for specified MediaPoolItem , as a list of paths to the matte files. |
GetTimelineMatteList(Folder) |
list of MediaPoolItem | Get mattes in specified Folder , as list of MediaPoolItems . |
DeleteClipMattes(MediaPoolItem, [paths]) |
Bool | Delete mattes based on their file paths, for specified MediaPoolItem . Returns True on success. |
RelinkClips([MediaPoolItem], folderPath) |
Bool | Update the folder location of specified media pool clips with the specified folderPath . |
UnlinkClips([MediaPoolItem]) |
Bool | Unlink specified media pool clips. |
ImportMedia([items...]) |
list of MediaPoolItem | Imports specified file/folder paths into current Media Pool folder. Input is an array of file/folder paths. Returns a list of the MediaPoolItems created. |
ImportMedia([{clipInfo}]) |
list of MediaPoolItem | Imports file path(s) into current Media Pool folder as specified in list of clipInfo dict. Returns a list of the MediaPoolItems created. |
Each clipInfo gets imported as one MediaPoolItem unless 'Show Individual Frames' is turned on. Example: ImportMedia([{"FilePath":"file_%03d.dpx", "StartIndex":1, "EndIndex":100}]) would import clip "file_[001-100].dpx". |
||
ExportMetadata(fileName, [clips]) |
Bool | Exports metadata of specified clips to fileName in CSV format. If no clips are specified, all clips from media pool will be used. |
GetUniqueId() |
string | Returns a unique ID for the media pool. |
CreateStereoClip(LeftMediaPoolItem, RightMediaPoolItem) |
MediaPoolItem | Takes in two existing MediaPoolItem objects and creates a new 3D stereoscopic media pool entry replacing the input media in the media pool. |
Function | Return Type | Description |
---|---|---|
GetClipList() |
list of MediaPoolItem | Returns a list of clips (items) within the folder. |
GetName() |
string | Returns the media folder name. |
GetSubFolderList() |
list of Folder | Returns a list of subfolders in the folder. |
GetIsFolderStale() |
bool | Returns true if folder is stale in collaboration mode, false otherwise. |
GetUniqueId() |
string | Returns a unique ID for the media pool folder. |
Export(filePath) |
Bool | Returns true if export of DRB folder to filePath is successful, false otherwise. |
TranscribeAudio() |
Bool | Transcribes audio of the MediaPoolItems within the folder and nested folders. Returns True if successful; False otherwise. |
ClearTranscription() |
Bool | Clears audio transcription of the MediaPoolItems within the folder and nested folders. Returns True if successful; False otherwise. |
Function | Return Type | Description |
---|---|---|
GetName() |
string | Returns the clip name. |
GetMetadata(metadataType=None) |
string | dict | Returns the metadata value for the key metadataType . If no argument is specified, a dict of all set metadata properties is returned. |
SetMetadata(metadataType, metadataValue) |
Bool | Sets the given metadata to metadataValue (string). Returns True if successful. |
SetMetadata({metadata}) |
Bool | Sets the item metadata with specified metadata dict. Returns True if successful. |
GetMediaId() |
string | Returns the unique ID for the MediaPoolItem . |
AddMarker(frameId, color, name, note, duration, customData) |
Bool | Creates a new marker at given frameId position and with given marker information. customData is optional and helps to attach user-specific data to the marker. |
GetMarkers() |
dict | Returns a dict (frameId -> {information}) of all markers and dicts with their information. |
GetMarkerByCustomData(customData) |
dict | Returns marker {information} for the first matching marker with specified customData . |
UpdateMarkerCustomData(frameId, customData) |
Bool | Updates customData (string) for the marker at given frameId position. CustomData is not exposed via UI and is useful for scripting developers to attach any user-specific data to markers. |
GetMarkerCustomData(frameId) |
string | Returns customData string for the marker at given frameId position. |
DeleteMarkersByColor(color) |
Bool | Deletes all markers of the specified color from the media pool item. "All" as argument deletes all color markers. |
DeleteMarkerAtFrame(frameNum) |
Bool | Deletes marker at frame number from the media pool item. |
DeleteMarkerByCustomData(customData) |
Bool | Deletes first matching marker with specified customData . |
AddFlag(color) |
Bool | Adds a flag with given color (string). |
GetFlagList() |
list | Returns a list of flag colors assigned to the item. |
ClearFlags(color) |
Bool | Clears the flag of the given color if one exists. An "All" argument is supported and clears all flags. |
GetClipColor() |
string | Returns the item color as a string. |
SetClipColor(colorName) |
Bool | Sets the item color based on the colorName (string). |
ClearClipColor() |
Bool | Clears the item color. |
GetClipProperty(propertyName=None) |
string | dict | Returns the property value for the key propertyName . If no argument is specified, a dict of all clip properties is returned. Check the section below for more information. |
SetClipProperty(propertyName, propertyValue) |
Bool | Sets the given property to propertyValue (string). Check the section below for more information. |
LinkProxyMedia(proxyMediaFilePath) |
Bool | Links proxy media located at path specified by argument proxyMediaFilePath with the current clip. proxyMediaFilePath should be an absolute clip path. |
UnlinkProxyMedia() |
Bool | Unlinks any proxy media associated with the clip. |
ReplaceClip(filePath) |
Bool | Replaces the underlying asset and metadata of MediaPoolItem with the specified absolute clip path. |
GetUniqueId() |
string | Returns a unique ID for the media pool item. |
TranscribeAudio() |
Bool | Transcribes audio of the MediaPoolItem . Returns True if successful; False otherwise. |
ClearTranscription() |
Bool | Clears audio transcription of the MediaPoolItem . Returns True if successful; False otherwise. |
GetAudioMapping() |
string | Returns a string with MediaPoolItem 's audio mapping information. Check Audio Mapping section below for more information. |
Function | Return Type | Description |
---|---|---|
GetName() |
string | Returns the timeline name. |
SetName(timelineName) |
Bool | Sets the timeline name if timelineName (string) is unique. Returns True if successful. |
GetStartFrame() |
int | Returns the frame number at the start of timeline. |
GetEndFrame() |
int | Returns the frame number at the end of timeline. |
SetStartTimecode(timecode) |
Bool | Sets the start timecode of the timeline to the string timecode . Returns true when the change is successful, false otherwise. |
GetStartTimecode() |
string | Returns the start timecode for the timeline. |
GetTrackCount(trackType) |
int | Returns the number of tracks for the given track type ("audio", "video" or "subtitle"). |
AddTrack(trackType, subTrackType) |
Bool | Adds track of trackType ("video", "subtitle", "audio"). Optional argument subTrackType is used for "audio" trackType. subTrackType can be one of {"mono", "stereo", "5.1", "5.1film", "7.1", "7.1film", "adaptive1", ... , "adaptive24"}. subTrackType defaults to 'mono' if skipped and track type is ‘audio’. |
AddTrack(trackType, newTrackOptions) |
Bool | Adds track of trackType ("video", "subtitle", "audio"). Optional newTrackOptions = {'audioType': same as subTrackType above, 'index': 1 <= index <= GetTrackCount(trackType) }. 'audioType' defaults to 'mono' if arg skipped and track type is ‘audio’. 'index' if skipped (or if value not in bounds) appends track. |
DeleteTrack(trackType, trackIndex) |
Bool | Deletes track of trackType ("video", "subtitle", "audio") and given trackIndex . 1 <= trackIndex <= GetTrackCount(trackType) . |
GetTrackSubType(trackType, trackIndex) |
string | Returns an audio track's format. The return value is one of {"mono", "stereo", "5.1", "5.1film", "7.1", "7.1film", "adaptive1", ... , "adaptive24"} and matches the parameters subTrackType and audioType in timeline.AddTrack . Returns a blank string for non audio tracks. |
SetTrackEnable(trackType, trackIndex, Bool) |
Bool | Enables/Disables track with given trackType and trackIndex . trackType is one of {"audio", "video", "subtitle"}. 1 <= trackIndex <= GetTrackCount(trackType) . |
GetIsTrackEnabled(trackType, trackIndex) |
Bool | Returns True if track with given trackType and trackIndex is enabled and False otherwise. trackType is one of {"audio", "video", "subtitle"}. 1 <= trackIndex <= GetTrackCount(trackType) . |
SetTrackLock(trackType, trackIndex, Bool) |
Bool | Locks/Unlocks track with given trackType and trackIndex . trackType is one of {"audio", "video", "subtitle"}. 1 <= trackIndex <= GetTrackCount(trackType) . |
GetIsTrackLocked(trackType, trackIndex) |
Bool | Returns True if track with given trackType and trackIndex is locked and False otherwise. trackType is one of {"audio", "video", "subtitle"}. 1 <= trackIndex <= GetTrackCount(trackType) . |
DeleteClips([timelineItems], Bool) |
Bool | Deletes specified TimelineItems from the timeline, performing ripple delete if the second argument is True. Second argument is optional (The default for this is False). |
SetClipsLinked([timelineItems], Bool) |
Bool | Links or unlinks the specified TimelineItems depending on the second argument. |
GetItemListInTrack(trackType, index) |
list of TimelineItem | Returns a list of timeline items on that track (based on trackType and index ). 1 <= index <= GetTrackCount(trackType) . |
AddMarker(frameId, color, name, note, duration, customData) |
Bool | Creates a new marker at given frameId position and with given marker information. customData is optional and helps to attach user-specific data to the marker. |
GetMarkers() |
dict | Returns a dict (frameId -> {information}) of all markers and dicts with their information. |
GetMarkerByCustomData(customData) |
dict | Returns marker {information} for the first matching marker with specified customData . |
UpdateMarkerCustomData(frameId, customData) |
Bool | Updates customData (string) for the marker at given frameId position. CustomData is not exposed via UI and is useful for scripting developers to attach any user-specific data to markers. |
GetMarkerCustomData(frameId) |
string | Returns customData string for the marker at given frameId position. |
DeleteMarkersByColor(color) |
Bool | Deletes all timeline markers of the specified color. An "All" argument is supported and deletes all timeline markers. |
DeleteMarkerAtFrame(frameNum) |
Bool | Deletes the timeline marker at the given frameNum . |
DeleteMarkerByCustomData(customData) |
Bool | Deletes the first matching marker with specified customData . |
ApplyGradeFromDRX(path, gradeMode, item1, item2, ...) |
Bool | Loads a still from given file path (string) and applies grade to Timeline Items with gradeMode (int): 0 - "No keyframes", 1 - "Source Timecode aligned", 2 - "Start Frames aligned". |
ApplyGradeFromDRX(path, gradeMode, [items]) |
Bool | Loads a still from given file path (string) and applies grade to Timeline Items with gradeMode (int): 0 - "No keyframes", 1 - "Source Timecode aligned", 2 - "Start Frames aligned". |
GetCurrentTimecode() |
string | Returns a string timecode representation for the current playhead position, while on Cut, Edit, Color, Fairlight, and Deliver pages. |
SetCurrentTimecode(timecode) |
Bool | Sets current playhead position from input timecode for Cut, Edit, Color, Fairlight, and Deliver pages. |
GetCurrentVideoItem() |
TimelineItem | Returns the current video timeline item. |
GetCurrentClipThumbnailImage() |
dict | Returns a dict (keys "width", "height", "format" and "data") with data containing raw thumbnail image data (RGB 8-bit image data encoded in base64 format) for current media in the Color Page. |
GetTrackName(trackType, trackIndex) |
string | Returns the track name for track indicated by trackType ("audio", "video" or "subtitle") and trackIndex . 1 <= trackIndex <= GetTrackCount(trackType) . |
SetTrackName(trackType, trackIndex, name) |
Bool | Sets the track name (string) for track indicated by trackType ("audio", "video" or "subtitle") and trackIndex . 1 <= trackIndex <= GetTrackCount(trackType) . |
DuplicateTimeline(timelineName) |
Timeline | Duplicates the timeline and returns the created timeline, with the (optional) timelineName , on success. |
CreateCompoundClip([timelineItems], clipInfo) |
TimelineItem | Creates a compound clip of input timelineItems with an optional clipInfo map: {"startTimecode" : "00:00:00:00", "name" : "Compound Clip 1"} . It returns the created timelineItem . |
CreateFusionClip([timelineItems]) |
TimelineItem | Creates a Fusion clip of input timelineItems . It returns the created timelineItem . |
ImportIntoTimeline(filePath, importOptions) |
Bool | Imports timeline items from an AAF file and optional importOptions dict into the timeline, with support for the keys:
|
Export(fileName, exportType, exportSubtype) |
Bool | Exports timeline to fileName as per input exportType & exportSubtype format. Refer to Looking up Timeline Export Properties for information on the parameters. |
GetSetting(settingName) |
string | Returns value of timeline setting (indicated by settingName : string). Check the section below for more information. |
SetSetting(settingName, settingValue) |
Bool | Sets timeline setting (indicated by settingName : string) to the value (settingValue : string). Check the section below for more information. |
InsertGeneratorIntoTimeline(generatorName) |
TimelineItem | Inserts a generator (indicated by generatorName : string) into the timeline. |
InsertFusionGeneratorIntoTimeline(generatorName) |
TimelineItem | Inserts a Fusion generator (indicated by generatorName : string) into the timeline. |
InsertFusionCompositionIntoTimeline() |
TimelineItem | Inserts a Fusion composition into the timeline. |
InsertOFXGeneratorIntoTimeline(generatorName) |
TimelineItem | Inserts an OFX generator (indicated by generatorName : string) into the timeline. |
InsertTitleIntoTimeline(titleName) |
TimelineItem | Inserts a title (indicated by titleName : string) into the timeline. |
InsertFusionTitleIntoTimeline(titleName) |
TimelineItem | Inserts a Fusion title (indicated by titleName : string) into the timeline. |
GrabStill() |
GalleryStill | Grabs still from the current video clip. Returns a GalleryStill object. |
GrabAllStills(stillFrameSource) |
list of GalleryStill | Grabs stills from all the clips of the timeline at stillFrameSource (1 - First frame, 2 - Middle frame). Returns the list of GalleryStill objects. |
GetUniqueId() |
string | Returns a unique ID for the timeline. |
CreateSubtitlesFromAudio(autoCaptionSettings) |
Bool | Creates subtitles from audio for the timeline. Takes in optional dictionary autoCaptionSettings . Check Auto Caption Settings subsection below for more information. Returns True on success, False otherwise. |
DetectSceneCuts() |
Bool | Detects and makes scene cuts along the timeline. Returns True if successful, False otherwise. |
ConvertTimelineToStereo() |
Bool | Converts timeline to stereo. Returns True if successful; False otherwise. |
GetNodeGraph() |
Graph | Returns the timeline's node graph object. |
AnalyzeDolbyVision([timelineItems]=[], analysisType=NONE) |
Bool | Analyzes Dolby Vision on clips present on the timeline. Returns True if analysis start is successful; False otherwise. If [timelineItems] is empty, analysis is performed on all items. Else, analysis is performed on [timelineItems] only. Set analysisType to resolve.DLB_BLEND_SHOTS for blend setting. |
Function | Return Type | Description |
---|---|---|
GetName() |
string | Returns the item name. |
GetDuration() |
int | Returns the item duration. |
GetEnd() |
int | Returns the end frame position on the timeline. |
GetFusionCompCount() |
int | Returns the number of Fusion compositions associated with the timeline item. |
GetFusionCompByIndex(compIndex) |
fusionComp | Returns the Fusion composition object based on given index. 1 <= compIndex <= timelineItem.GetFusionCompCount() |
GetFusionCompNameList() |
list | Returns a list of Fusion composition names associated with the timeline item. |
GetFusionCompByName(compName) |
fusionComp | Returns the Fusion composition object based on given name. |
GetLeftOffset() |
int | Returns the maximum extension by frame for clip from left side. |
GetRightOffset() |
int | Returns the maximum extension by frame for clip from right side. |
GetStart() |
int | Returns the start frame position on the timeline. |
SetProperty(propertyKey, propertyValue) |
Bool | Sets the value of property propertyKey to value propertyValue . Refer to Looking up Timeline Item Properties for more information. |
GetProperty(propertyKey) |
int | dict | Returns the value of the specified key. If no key is specified, the method returns a dictionary (Python) or table (Lua) for all supported keys. |
AddMarker(frameId, color, name, note, duration, customData) |
Bool | Creates a new marker at given frameId position and with given marker information. customData is optional and helps to attach user-specific data to the marker. |
GetMarkers() |
dict | Returns a dict (frameId -> {information}) of all markers and dicts with their information. |
GetMarkerByCustomData(customData) |
dict | Returns marker {information} for the first matching marker with specified customData . |
UpdateMarkerCustomData(frameId, customData) |
Bool | Updates customData (string) for the marker at given frameId position. CustomData is not exposed via UI and is useful for scripting developers to attach any user-specific data to markers. |
GetMarkerCustomData(frameId) |
string | Returns customData string for the marker at given frameId position. |
DeleteMarkersByColor(color) |
Bool | Deletes all markers of the specified color from the timeline item. "All" as argument deletes all color markers. |
DeleteMarkerAtFrame(frameNum) |
Bool | Deletes marker at frame number from the timeline item. |
DeleteMarkerByCustomData(customData) |
Bool | Deletes first matching marker with specified customData . |
AddFlag(color) |
Bool | Adds a flag with given color (string). |
GetFlagList() |
list | Returns a list of flag colors assigned to the item. |
ClearFlags(color) |
Bool | Clears flags of the specified color. An "All" argument is supported and clears all flags. |
GetClipColor() |
string | Returns the item color as a string. |
SetClipColor(colorName) |
Bool | Sets the item color based on the colorName (string). |
ClearClipColor() |
Bool | Clears the item color. |
AddFusionComp() |
fusionComp | Adds a new Fusion composition associated with the timeline item. |
ImportFusionComp(path) |
fusionComp | Imports a Fusion composition from given file path by creating and adding a new composition for the item. |
ExportFusionComp(path, compIndex) |
Bool | Exports the Fusion composition based on given index to the path provided. |
DeleteFusionCompByName(compName) |
Bool | Deletes the named Fusion composition. |
LoadFusionCompByName(compName) |
fusionComp | Loads the named Fusion composition as the active composition. |
RenameFusionCompByName(oldName, newName) |
Bool | Renames the Fusion composition identified by oldName . |
AddVersion(versionName, versionType) |
Bool | Adds a new color version for a video clip based on versionType (0 - local, 1 - remote). |
GetCurrentVersion() |
dict | Returns the current version of the video clip. The returned value will have the keys versionName and versionType (0 - local, 1 - remote). |
DeleteVersionByName(versionName, versionType) |
Bool | Deletes a color version by name and versionType (0 - local, 1 - remote). |
LoadVersionByName(versionName, versionType) |
Bool | Loads a named color version as the active version. versionType : 0 - local, 1 - remote. |
RenameVersionByName(oldName, newName, versionType) |
Bool | Renames the color version identified by oldName and versionType (0 - local, 1 - remote). |
GetVersionNameList(versionType) |
list | Returns a list of all color versions for the given versionType (0 - local, 1 - remote). |
GetMediaPoolItem() |
MediaPoolItem | Returns the media pool item corresponding to the timeline item if one exists. |
GetStereoConvergenceValues() |
dict | Returns a dict (offset -> value ) of keyframe offsets and respective convergence values. |
GetStereoLeftFloatingWindowParams() |
dict | For the LEFT eye -> returns a dict (offset -> dict) of keyframe offsets and respective floating window params. Value at particular offset includes the left, right, top, and bottom floating window values. |
GetStereoRightFloatingWindowParams() |
dict | For the RIGHT eye -> returns a dict (offset -> dict) of keyframe offsets and respective floating window params. Value at particular offset includes the left, right, top, and bottom floating window values. |
ApplyArriCdlLut() |
Bool | Applies ARRI CDL and LUT. Returns True if successful, False otherwise. |
SetCDL(CDL_map) |
Bool | Keys of map are: "NodeIndex", "Slope", "Offset", "Power", "Saturation", where 1 <= NodeIndex <= total number of nodes. Example Python code: SetCDL({"NodeIndex" : "1", "Slope" : "0.5 0.4 0.2", "Offset" : "0.4 0.3 0.2", "Power" : "0.6 0.7 0.8", "Saturation" : "0.65"}) . |
AddTake(mediaPoolItem, startFrame, endFrame) |
Bool | Adds mediaPoolItem as a new take. Initializes a take selector for the timeline item if needed. By default, the full clip extents is added. startFrame (int) and endFrame (int) are optional arguments used to specify the extents. |
GetSelectedTakeIndex() |
int | Returns the index of the currently selected take, or 0 if the clip is not a take selector. |
GetTakesCount() |
int | Returns the number of takes in take selector, or 0 if the clip is not a take selector. |
GetTakeByIndex(idx) |
dict | Returns a dict (keys "startFrame", "endFrame" and "mediaPoolItem") with take info for specified index. |
DeleteTakeByIndex(idx) |
Bool | Deletes a take by index, 1 <= idx <= number of takes. |
SelectTakeByIndex(idx) |
Bool | Selects a take by index, 1 <= idx <= number of takes. |
FinalizeTake() |
Bool | Finalizes take selection. |
CopyGrades([tgtTimelineItems]) |
Bool | Copies the current node stack layer grade to the same layer for each item in tgtTimelineItems . Returns True if successful. |
SetClipEnabled(Bool) |
Bool | Sets clip enabled based on argument. |
GetClipEnabled() |
Bool | Gets clip enabled status. |
UpdateSidecar() |
Bool | Updates sidecar file for BRAW clips or RMD file for R3D clips. |
GetUniqueId() |
string | Returns a unique ID for the timeline item. |
LoadBurnInPreset(presetName) |
Bool | Loads user defined data burn in preset for clip when supplied presetName (string). Returns true if successful. |
CreateMagicMask(mode) |
Bool | Returns True if magic mask was created successfully, False otherwise. mode can be "F" (forward), "B" (backward), or "BI" (bidirectional). |
RegenerateMagicMask() |
Bool | Returns True if magic mask was regenerated successfully, False otherwise. |
Stabilize() |
Bool | Returns True if stabilization was successful, False otherwise. |
SmartReframe() |
Bool | Performs Smart Reframe. Returns True if successful, False otherwise. |
GetNodeGraph(layerIdx) |
Graph | Returns the clip's node graph object at layerIdx (int, optional). Returns the first layer if layerIdx is skipped. 1 <= layerIdx <= project.GetSetting("nodeStackLayers") . |
GetColorGroup() |
ColorGroup | Returns the clip's color group if one exists. |
AssignToColorGroup(ColorGroup) |
Bool | Returns True if TiItem successfully assigned to given ColorGroup . ColorGroup must be an existing group in the current project. |
RemoveFromColorGroup() |
Bool | Returns True if the TiItem is successfully removed from the ColorGroup it is in. |
ExportLUT(exportType, path) |
Bool | Exports LUTs from tiItem referring to value passed in exportType (enum) for LUT size. Refer to ExportLUT Notes section for possible values. Saves generated LUT in the provided path (string). path should include the intended file name. If an empty or incorrect extension is provided, the appropriate extension (.cube/.vlt) will be appended at the end of the path. |
GetLinkedItems() |
list of TimelineItem | Returns a list of linked timeline items. |
GetTrackTypeAndIndex() |
list | Returns a list of two values that correspond to the TimelineItem 's trackType (string) and trackIndex (int) respectively. trackType is one of {"audio", "video", "subtitle"}. 1 <= trackIndex <= Timeline.GetTrackCount(trackType) . |
GetSourceAudioChannelMapping() |
string | Returns a string with TimelineItem 's audio mapping information. Check Audio Mapping section below for more information. |
Function | Return Type | Description |
---|---|---|
GetAlbumName(galleryStillAlbum) |
string | Returns the name of the GalleryStillAlbum object galleryStillAlbum . |
SetAlbumName(galleryStillAlbum, albumName) |
Bool | Sets the name of the GalleryStillAlbum object galleryStillAlbum to albumName . |
GetCurrentStillAlbum() |
GalleryStillAlbum | Returns current album as a GalleryStillAlbum object. |
SetCurrentStillAlbum(galleryStillAlbum) |
Bool | Sets current album to GalleryStillAlbum object galleryStillAlbum . |
GetGalleryStillAlbums() |
list of GalleryStillAlbum | Returns the gallery albums as a list of GalleryStillAlbum objects. |
Function | Return Type | Description |
---|---|---|
GetStills() |
list of GalleryStill | Returns the list of GalleryStill objects in the album. |
GetLabel(galleryStill) |
string | Returns the label of the galleryStill . |
SetLabel(galleryStill, label) |
Bool | Sets the new label to GalleryStill object galleryStill . |
ImportStills([filePaths]) |
Bool | Imports GalleryStill from each filePath in [filePaths] list. True if at least one still is imported successfully. False otherwise. |
ExportStills([galleryStill], folderPath, filePrefix, format) |
Bool | Exports list of GalleryStill objects [galleryStill] to directory folderPath , with filename prefix filePrefix , using file format format (supported formats: dpx, cin, tif, jpg, png, ppm, bmp, xpm, drx). |
DeleteStills([galleryStill]) |
Bool | Deletes specified list of GalleryStill objects [galleryStill] . |
This class does not provide any API functions but the object type is used by functions in other classes.
Function | Return Type | Description |
---|---|---|
GetNumNodes() |
int | Returns the number of nodes in the graph. |
SetLUT(nodeIndex, lutPath) |
Bool | Sets LUT on the node mapping the nodeIndex provided, 1 <= nodeIndex <= self.GetNumNodes() . The lutPath can be an absolute path, or a relative path (based off custom LUT paths or the master LUT path). The operation is successful for valid LUT paths that Resolve has already discovered (see Project.RefreshLUTList ). |
GetLUT(nodeIndex) |
string | Gets relative LUT path based on the nodeIndex provided, 1 <= nodeIndex <= total number of nodes. |
GetNodeLabel(nodeIndex) |
string | Returns the label of the node at nodeIndex . |
GetToolsInNode(nodeIndex) |
list | Returns toolsList (list of strings) of the tools used in the node indicated by given nodeIndex (int). |
SetNodeEnabled(nodeIndex, isEnabled) |
Bool | Sets the node at the given nodeIndex (int) to isEnabled (bool). 1 <= nodeIndex <= self.GetNumNodes() . |
Function | Return Type | Description |
---|---|---|
GetName() |
string | Returns the name (string) of the ColorGroup . |
SetName(groupName) |
Bool | Renames ColorGroup to groupName (string). |
GetClipsInTimeline(Timeline=CurrTimeline) |
list of TimelineItem | Returns a list of TimelineItem that are in colorGroup in the given Timeline . Timeline is Current Timeline by default. |
GetPreClipNodeGraph() |
Graph | Returns the ColorGroup Pre-clip graph. |
GetPostClipNodeGraph() |
Graph | Returns the ColorGroup Post-clip graph. |
Besides primitive data types, Resolve's Python API mainly uses list
and dict
data structures. Lists are denoted by [ ... ]
and dicts are denoted by { ... }
above.
As Lua does not support list
and dict
data structures, the Lua API implements "list" as a table with indices, e.g. { [1] = listValue1, [2] = listValue2, ... }
. Similarly, the Lua API implements "dict" as a table with the dictionary key as the first element, e.g. { [dictKey1] = dictValue1, [dictKey2] = dictValue2, ... }
.
This section covers additional notes for the functions Resolve.GetKeyframeMode()
and Resolve.SetKeyframeMode(keyframeMode)
.
keyframeMode
can be one of the following enums:
resolve.KEYFRAME_MODE_ALL
== 0resolve.KEYFRAME_MODE_COLOR
== 1resolve.KEYFRAME_MODE_SIZING
== 2
Integer values returned by Resolve.GetKeyframeMode()
will correspond to the enums above.
This section covers additional notes for the functions ProjectManager:CreateCloudProject
, ProjectManager:ImportCloudProject
, and ProjectManager:RestoreCloudProject
.
All three functions take in a {cloudSettings}
dict, that have the following keys:
resolve.CLOUD_SETTING_PROJECT_NAME
: string,""
by defaultresolve.CLOUD_SETTING_PROJECT_MEDIA_PATH
: string,""
by defaultresolve.CLOUD_SETTING_IS_COLLAB
: bool,False
by defaultresolve.CLOUD_SETTING_SYNC_MODE
:syncMode
(see below),resolve.CLOUD_SYNC_PROXY_ONLY
by defaultresolve.CLOUD_SETTING_IS_CAMERA_ACCESS
: bool,False
by default
Where syncMode
is one of the following values:
resolve.CLOUD_SYNC_NONE
resolve.CLOUD_SYNC_PROXY_ONLY
resolve.CLOUD_SYNC_PROXY_AND_ORIG
All three ProjectManager:CreateCloudProject
, ProjectManager:ImportCloudProject
, and ProjectManager:RestoreCloudProject
require resolve.PROJECT_MEDIA_PATH
to be defined. ProjectManager:CreateCloudProject
also requires resolve.PROJECT_NAME
to be defined.
This section covers additional notes for the functions Project:GetSetting
, Project:SetSetting
, Timeline:GetSetting
, Timeline:SetSetting
, MediaPoolItem:GetClipProperty
, and MediaPoolItem:SetClipProperty
. These functions are used to get and set properties otherwise available to the user through the Project Settings and the Clip Attributes dialogs.
The functions follow a key-value pair format, where each property is identified by a key (settingName
or propertyName
parameter) and possesses a value (typically a text value). Keys and values are designed to be easily correlated with parameter names and values in the Resolve UI. Explicitly enumerated values for some parameters are listed below.
Some properties may be read-only - these include intrinsic clip properties like date created or sample rate, and properties that can be disabled in specific application contexts (e.g., custom colorspaces in an ACES workflow, or output sizing parameters when behavior is set to match timeline).
Invoke Project:GetSetting
, Timeline:GetSetting
, or MediaPoolItem:GetClipProperty
with the appropriate property key. To get a snapshot of all queryable properties (keys and values), you can call Project:GetSetting
, Timeline:GetSetting
, or MediaPoolItem:GetClipProperty
without parameters (or with a NoneType
or a blank property key). Using specific keys to query individual properties will be faster. Note that getting a property using an invalid key will return a trivial result.
Invoke Project:SetSetting
, Timeline:SetSetting
, or MediaPoolItem:SetClipProperty
with the appropriate property key and a valid value. When setting a parameter, please check the return value to ensure the success of the operation. You can troubleshoot the validity of keys and values by setting the desired result from the UI and checking property snapshots before and after the change.
"superScale" - the property value is an enumerated integer between 0 and 4 with these meanings:
- 0 = Auto
- 1 = No scaling
- 2, 3, and 4 represent the Super Scale multipliers 2x, 3x, and 4x.
For super scale multiplier '2x Enhanced', exactly 4 arguments must be passed as outlined below. If less than 4 arguments are passed, it will default to 2x.
Affects:
Project:GetSetting('superScale')
andProject:SetSetting('superScale', x)
- For '2x Enhanced' -->
Project:SetSetting('superScale', 2, sharpnessValue, noiseReductionValue)
, wheresharpnessValue
is a float in the range [0.0, 1.0] andnoiseReductionValue
is a float in the range [0.0, 1.0]
"timelineFrameRate" - the property value is one of the frame rates available to the user in project settings under "Timeline frame rate" option. Drop Frame can be configured for supported frame rates by appending the frame rate with "DF", e.g., "29.97 DF" will enable drop frame and "29.97" will disable drop frame.
Affects:
Project:GetSetting('timelineFrameRate')
andProject:SetSetting('timelineFrameRate', x)
"Super Scale" - the property value is an enumerated integer between 1 and 4 with these meanings:
- 1 = No scaling
- 2, 3, and 4 represent the Super Scale multipliers 2x, 3x, and 4x.
For super scale multiplier '2x Enhanced', exactly 4 arguments must be passed as outlined below. If less than 4 arguments are passed, it will default to 2x.
Affects:
MediaPoolItem:GetClipProperty('Super Scale')
andMediaPoolItem:SetClipProperty('Super Scale', x)
- For '2x Enhanced' -->
MediaPoolItem:SetClipProperty('Super Scale', 2, sharpnessValue, noiseReductionValue)
, wheresharpnessValue
is a float in the range [0.0, 1.0] andnoiseReductionValue
is a float in the range [0.0, 1.0]
"Cloud Sync" = the property value is an enumerated integer that corresponds to one of the following enums:
resolve.CLOUD_SYNC_DEFAULT
== -1resolve.CLOUD_SYNC_DOWNLOAD_IN_QUEUE
== 0resolve.CLOUD_SYNC_DOWNLOAD_IN_PROGRESS
== 1resolve.CLOUD_SYNC_DOWNLOAD_SUCCESS
== 2resolve.CLOUD_SYNC_DOWNLOAD_FAIL
== 3resolve.CLOUD_SYNC_DOWNLOAD_NOT_FOUND
== 4resolve.CLOUD_SYNC_UPLOAD_IN_QUEUE
== 5resolve.CLOUD_SYNC_UPLOAD_IN_PROGRESS
== 6resolve.CLOUD_SYNC_UPLOAD_SUCCESS
== 7resolve.CLOUD_SYNC_UPLOAD_FAIL
== 8resolve.CLOUD_SYNC_UPLOAD_NOT_FOUND
== 9resolve.CLOUD_SYNC_SUCCESS
== 10
This section covers the output for mpItem.GetAudioMapping()
and timelineItem.GetSourceAudioChannelMapping()
. Mapping format (json result) is similar for mpItem
and timelineItem
.
This section will follow an example of an mpItem
that has audio from its embedded source, and from two other clips that are linked to it. The audio clip attributes of this mpItem
will show 3 tracks.
Assumptions:
- (A) The embedded track is of format/type 'stereo' (2 channels),
- (B) Linked clip 1 track is of format/type '7.1' (8 channels),
- (C) Linked clip 2 track is '5.1' (6 channels)
and assume that the format/type was not changed further.
mpItem.GetAudioMapping()
returns a string of the form:
{
"embedded_audio_channels": 2, # Total number of embedded channels across all tracks
"linked_audio": { # A list of only linked audio information
"1": { # Same as (B) above
"channels": 8,
"path": FILE_PATH
},
"2": { # Same as (C) above
"channels": 6,
"path": FILE_PATH
}
},
"track_mapping": { # Listing of all the tracks. Output here will match what is seen in the audio clip attributes menu on the UI.
"1": {
"channel_idx": [1, 3], # In this case, channel index '1' corresponds to first channel of (A), channel index '3' will correspond to the first channel of (B)
"mute": true, # Mute 'true' indicates track is muted. Valid value is true/false.
"type": "Stereo" # The length of the 'channel_idx' list will always correspond to the number of channels the format specified in 'type' will allow.
# In this case, 'Stereo' allows 2 channels and so the length of the 'channel_idx' list is 2.
},
"2": {
"channel_idx": [3, 4, 5, 6, 7, 8, 9, 10], # Channel indices here are following the default for (B)
"mute": true,
"type": "7.1"
},
"3": {
"channel_idx": [1, 1, 1, 1, 15, 16], # The first four channels for this track correspond to the first channel of (A), and the final 2 follow the default for (C)
"mute": false,
"type": "5.1"
}
}
}
This section covers the supported settings for the method Timeline.CreateSubtitlesFromAudio({autoCaptionSettings})
.
The parameter setting is a dictionary containing the following keys:
resolve.SUBTITLE_LANGUAGE
:languageID
(see below),resolve.AUTO_CAPTION_AUTO
by defaultresolve.SUBTITLE_CAPTION_PRESET
:presetType
(see below),resolve.AUTO_CAPTION_SUBTITLE_DEFAULT
by defaultresolve.SUBTITLE_CHARS_PER_LINE
: Number between 1 and 60 inclusive,42
by defaultresolve.SUBTITLE_LINE_BREAK
:lineBreakType
(see below),resolve.AUTO_CAPTION_LINE_SINGLE
by defaultresolve.SUBTITLE_GAP
: Number between 0 and 10 inclusive,0
by default
Note: The default values for some keys may change based on values defined for other keys, as per the UI. For example, if the following dictionary is supplied:
CreateSubtitlesFromAudio( { resolve.SUBTITLE_LANGUAGE = resolve.AUTO_CAPTION_KOREAN,
resolve.SUBTITLE_CAPTION_PRESET = resolve.AUTO_CAPTION_NETFLIX } )
the default value for resolve.SUBTITLE_CHARS_PER_LINE
will be 16
instead of 42
.
languageIDs:
resolve.AUTO_CAPTION_AUTO
resolve.AUTO_CAPTION_DANISH
resolve.AUTO_CAPTION_DUTCH
resolve.AUTO_CAPTION_ENGLISH
resolve.AUTO_CAPTION_FRENCH
resolve.AUTO_CAPTION_GERMAN
resolve.AUTO_CAPTION_ITALIAN
resolve.AUTO_CAPTION_JAPANESE
resolve.AUTO_CAPTION_KOREAN
resolve.AUTO_CAPTION_MANDARIN_SIMPLIFIED
resolve.AUTO_CAPTION_MANDARIN_TRADITIONAL
resolve.AUTO_CAPTION_NORWEGIAN
resolve.AUTO_CAPTION_PORTUGUESE
resolve.AUTO_CAPTION_RUSSIAN
resolve.AUTO_CAPTION_SPANISH
resolve.AUTO_CAPTION_SWEDISH
presetTypes:
resolve.AUTO_CAPTION_SUBTITLE_DEFAULT
resolve.AUTO_CAPTION_TELETEXT
resolve.AUTO_CAPTION_NETFLIX
lineBreakTypes:
resolve.AUTO_CAPTION_LINE_SINGLE
resolve.AUTO_CAPTION_LINE_DOUBLE
This section covers the supported settings for the method SetRenderSettings({settings})
.
The parameter setting is a dictionary containing the following keys:
"SelectAllFrames"
: Bool (when set to True, the settingsMarkIn
andMarkOut
are ignored)"MarkIn"
: int"MarkOut"
: int"TargetDir"
: string"CustomName"
: string"UniqueFilenameStyle"
: 0 - Prefix, 1 - Suffix."ExportVideo"
: Bool"ExportAudio"
: Bool"FormatWidth"
: int"FormatHeight"
: int"FrameRate"
: float (examples: 23.976, 24)"PixelAspectRatio"
: string (for SD resolution: "16_9" or "4_3") (other resolutions: "square" or "cinemascope")"VideoQuality"
: Possible values for current codec (if applicable):0
(int) - will set quality to automatic[1 -> MAX]
(int) - will set input bit rate["Least", "Low", "Medium", "High", "Best"]
(string) - will set input quality level
"AudioCodec"
: string (example: "aac")"AudioBitDepth"
: int"AudioSampleRate"
: int"ColorSpaceTag"
: string (example: "Same as Project", "AstroDesign")"GammaTag"
: string (example: "Same as Project", "ACEScct")"ExportAlpha"
: Bool"EncodingProfile"
: string (example: "Main10"). Can only be set for H.264 and H.265."MultiPassEncode"
: Bool. Can only be set for H.264."AlphaMode"
: 0 - Premultiplied, 1 - Straight. Can only be set if"ExportAlpha"
is true."NetworkOptimization"
: Bool. Only supported by QuickTime and MP4 formats.
This section covers the parameters for the argument Export(fileName, exportType, exportSubtype)
.
exportType
can be one of the following constants:
resolve.EXPORT_AAF
resolve.EXPORT_DRT
resolve.EXPORT_EDL
resolve.EXPORT_FCP_7_XML
resolve.EXPORT_FCPXML_1_8
resolve.EXPORT_FCPXML_1_9
resolve.EXPORT_FCPXML_1_10
resolve.EXPORT_HDR_10_PROFILE_A
resolve.EXPORT_HDR_10_PROFILE_B
resolve.EXPORT_TEXT_CSV
resolve.EXPORT_TEXT_TAB
resolve.EXPORT_DOLBY_VISION_VER_2_9
resolve.EXPORT_DOLBY_VISION_VER_4_0
resolve.EXPORT_DOLBY_VISION_VER_5_1
resolve.EXPORT_OTIO
resolve.EXPORT_ALE
resolve.EXPORT_ALE_CDL
exportSubtype
can be one of the following enums:
resolve.EXPORT_NONE
resolve.EXPORT_AAF_NEW
resolve.EXPORT_AAF_EXISTING
resolve.EXPORT_CDL
resolve.EXPORT_SDL
resolve.EXPORT_MISSING_CLIPS
Notes:
exportSubType
is a required parameter forresolve.EXPORT_AAF
andresolve.EXPORT_EDL
. For the rest of theexportType
,exportSubtype
is ignored.- When
exportType
isresolve.EXPORT_AAF
, validexportSubtype
values areresolve.EXPORT_AAF_NEW
andresolve.EXPORT_AAF_EXISTING
. - When
exportType
isresolve.EXPORT_EDL
, validexportSubtype
values areresolve.EXPORT_CDL
,resolve.EXPORT_SDL
,resolve.EXPORT_MISSING_CLIPS
, andresolve.EXPORT_NONE
.
Unsupported exportType
types:
Starting with DaVinci Resolve 18.1, the following export types are not supported:
resolve.EXPORT_FCPXML_1_3
resolve.EXPORT_FCPXML_1_4
resolve.EXPORT_FCPXML_1_5
resolve.EXPORT_FCPXML_1_6
resolve.EXPORT_FCPXML_1_7
This section covers additional notes for the functions TimelineItem:SetProperty
and TimelineItem:GetProperty
. These functions are used to get and set properties mentioned.
The supported keys with their accepted values are:
Property Key | Accepted Values |
---|---|
"Pan" |
Floating point values from -4.0*width to 4.0*width |
"Tilt" |
Floating point values from -4.0*height to 4.0*height |
"ZoomX" |
Floating point values from 0.0 to 100.0 |
"ZoomY" |
Floating point values from 0.0 to 100.0 |
"ZoomGang" |
Boolean value |
"RotationAngle" |
Floating point values from -360.0 to 360.0 |
"AnchorPointX" |
Floating point values from -4.0*width to 4.0*width |
"AnchorPointY" |
Floating point values from -4.0*height to 4.0*height |
"Pitch" |
Floating point values from -1.5 to 1.5 |
"Yaw" |
Floating point values from -1.5 to 1.5 |
"FlipX" |
Boolean value for flipping horizontally |
"FlipY" |
Boolean value for flipping vertically |
"CropLeft" |
Floating point values from 0.0 to width |
"CropRight" |
Floating point values from 0.0 to width |
"CropTop" |
Floating point values from 0.0 to height |
"CropBottom" |
Floating point values from 0.0 to height |
"CropSoftness" |
Floating point values from -100.0 to 100.0 |
"CropRetain" |
Boolean value for "Retain Image Position" checkbox |
"DynamicZoomEase" |
A value from the following constants: - DYNAMIC_ZOOM_EASE_LINEAR = 0- DYNAMIC_ZOOM_EASE_IN - DYNAMIC_ZOOM_EASE_OUT - DYNAMIC_ZOOM_EASE_IN_AND_OUT |
"CompositeMode" |
A value from the following constants: - COMPOSITE_NORMAL = 0- COMPOSITE_ADD - COMPOSITE_SUBTRACT - COMPOSITE_DIFF - COMPOSITE_MULTIPLY - COMPOSITE_SCREEN - COMPOSITE_OVERLAY - COMPOSITE_HARDLIGHT - COMPOSITE_SOFTLIGHT - COMPOSITE_DARKEN - COMPOSITE_LIGHTEN - COMPOSITE_COLOR_DODGE - COMPOSITE_COLOR_BURN - COMPOSITE_EXCLUSION - COMPOSITE_HUE - COMPOSITE_SATURATE - COMPOSITE_COLORIZE - COMPOSITE_LUMA_MASK - COMPOSITE_DIVIDE - COMPOSITE_LINEAR_DODGE - COMPOSITE_LINEAR_BURN - COMPOSITE_LINEAR_LIGHT - COMPOSITE_VIVID_LIGHT - COMPOSITE_PIN_LIGHT - COMPOSITE_HARD_MIX - COMPOSITE_LIGHTER_COLOR - COMPOSITE_DARKER_COLOR - COMPOSITE_FOREGROUND - COMPOSITE_ALPHA - COMPOSITE_INVERTED_ALPHA - COMPOSITE_LUM - COMPOSITE_INVERTED_LUM |
"Opacity" |
Floating point value from 0.0 to 100.0 |
"Distortion" |
Floating point value from -1.0 to 1.0 |
"RetimeProcess" |
A value from the following constants: - RETIME_USE_PROJECT = 0- RETIME_NEAREST - RETIME_FRAME_BLEND - RETIME_OPTICAL_FLOW |
"MotionEstimation" |
A value from the following constants: - MOTION_EST_USE_PROJECT = 0- MOTION_EST_STANDARD_FASTER - MOTION_EST_STANDARD_BETTER - MOTION_EST_ENHANCED_FASTER - MOTION_EST_ENHANCED_BETTER - MOTION_EST_SPEED_WARP_BETTER - MOTION_EST_SPEED_WARP_FASTER |
"Scaling" |
A value from the following constants: - SCALE_USE_PROJECT = 0- SCALE_CROP - SCALE_FIT - SCALE_FILL - SCALE_STRETCH |
"ResizeFilter" |
A value from the following constants: - RESIZE_FILTER_USE_PROJECT = 0- RESIZE_FILTER_SHARPER - RESIZE_FILTER_SMOOTHER - RESIZE_FILTER_BICUBIC - RESIZE_FILTER_BILINEAR - RESIZE_FILTER_BESSEL - RESIZE_FILTER_BOX - RESIZE_FILTER_CATMULL_ROM - RESIZE_FILTER_CUBIC - RESIZE_FILTER_GAUSSIAN - RESIZE_FILTER_LANCZOS - RESIZE_FILTER_MITCHELL - RESIZE_FILTER_NEAREST_NEIGHBOR - RESIZE_FILTER_QUADRATIC - RESIZE_FILTER_SINC - RESIZE_FILTER_LINEAR |
Notes:
- Values beyond the range will be clipped.
width
andheight
are the same as the UI max limits.- The arguments can be passed as a key and value pair or they can be grouped together into a dictionary (for Python) or table (for Lua) and passed as a single argument.
- Getting the values for the keys that use constants will return the number which is in the constant.
The following section covers additional notes for TimelineItem.ExportLUT(exportType, path)
.
Supported values for exportType
(enum) are:
resolve.EXPORT_LUT_17PTCUBE
resolve.EXPORT_LUT_33PTCUBE
resolve.EXPORT_LUT_65PTCUBE
resolve.EXPORT_LUT_PANASONICVLUT
The following API functions are deprecated.
Function | Return Type | Description |
---|---|---|
GetProjectsInCurrentFolder() |
dict | Returns a dict of project names in the current folder. |
GetFoldersInCurrentFolder() |
dict | Returns a dict of folder names in the current folder. |
Function | Return Type | Description |
---|---|---|
GetPresets() |
dict | Returns a dict of presets and their information. |
GetRenderJobs() |
dict | Returns a dict of render jobs and their information. |
GetRenderPresets() |
dict | Returns a dict of render presets and their information. |
Function | Return Type | Description |
---|---|---|
GetMountedVolumes() |
dict | Returns a dict of folder paths corresponding to mounted volumes displayed in Resolve’s Media Storage. |
GetSubFolders(folderPath) |
dict | Returns a dict of folder paths in the given absolute folder path. |
GetFiles(folderPath) |
dict | Returns a dict of media and file listings in the given absolute folder path. Note that media listings may be logically consolidated entries. |
AddItemsToMediaPool(item1, item2, ...) |
dict | Adds specified file/folder paths from Media Storage into current Media Pool folder. Input is one or more file/folder paths. Returns a dict of the MediaPoolItems created. |
AddItemsToMediaPool([items...]) |
dict | Adds specified file/folder paths from Media Storage into current Media Pool folder. Input is an array of file/folder paths. Returns a dict of the MediaPoolItems created. |
Function | Return Type | Description |
---|---|---|
GetClips() |
dict | Returns a dict of clips (items) within the folder. |
GetSubFolders() |
dict | Returns a dict of subfolders in the folder. |
Function | Return Type | Description |
---|---|---|
GetFlags() |
dict | Returns a dict of flag colors assigned to the item. |
Function | Return Type | Description |
---|---|---|
GetItemsInTrack(trackType, index) |
dict | Returns a dict of Timeline items on the video or audio track (based on trackType ) at specified index. |
Function | Return Type | Description |
---|---|---|
GetFusionCompNames() |
dict | Returns a dict of Fusion composition names associated with the TimelineItem . |
GetFlags() |
dict | Returns a dict of flag colors assigned to the item. |
GetVersionNames(versionType) |
dict | Returns a dict of version names by provided versionType : 0 - local, 1 - remote. |
GetNumNodes() |
int | Returns the number of nodes in the current graph for the TimelineItem . |
SetLUT(nodeIndex, lutPath) |
Bool | Sets LUT on the node mapping the nodeIndex provided, 1 <= nodeIndex <= total number of nodes. The lutPath can be an absolute path, or a relative path (based off custom LUT paths or the master LUT path). The operation is successful for valid LUT paths that Resolve has already discovered (see Project.RefreshLUTList ). |
GetLUT(nodeIndex) |
string | Gets relative LUT path based on the nodeIndex provided, 1 <= nodeIndex <= total number of nodes. |
GetNodeLabel(nodeIndex) |
string | Returns the label of the node at nodeIndex . |
The following API (functions and parameters) are no longer supported. Use job IDs instead of indices.
Function | Return Type | Description |
---|---|---|
StartRendering(index1, index2, ...) |
Bool | Please use unique job ids (string) instead of indices. |
StartRendering([idxs...]) |
Bool | Please use unique job ids (string) instead of indices. |
DeleteRenderJobByIndex(idx) |
Bool | Please use unique job ids (string) instead of indices. |
GetRenderJobStatus(idx) |
dict | Please use unique job ids (string) instead of indices. |
GetSetting and SetSetting |
dict | settingName videoMonitorUseRec601For422SDI is now replaced with videoMonitorUseMatrixOverrideFor422SDI and videoMonitorMatrixOverrideFor422SDI . settingName perfProxyMediaOn is now replaced with perfProxyMediaMode which takes values 0 - disabled, 1 - when available, 2 - when source not available. |
Refer to the DaVinci Resolve User Manual for detailed guidance on using the API, Console, and additional scripting examples.