Method
stringlengths 13
115
| Return
stringclasses 7
values | Function
stringlengths 29
283
|
---|---|---|
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 | Delete 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() | [project names...] | Returns a list of project names in current folder |
GetFolderListInCurrentFolder() | [folder names...] | Returns a list of folder names in current folder |
GotoRootFolder() | Bool | Opens root folder in database |
GotoParentFolder() | Bool | Opens parent folder of current folder in database if current folder has 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() | {dbInfo} | Returns a dictionary (with keys 'DbType', 'DbName' and optional 'IpAddress') corresponding to the current database connection |
GetDatabaseList() | [{dbInfo}] | 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. 'DbType': 'Disk' or 'PostgreSQL' (string) 'DbName': database name (string) 'IpAddress': IP address of the PostgreSQL server (string, optional key - defaults to '127.0.0.1') |
README.md exists but content is empty.
Use the Edit dataset card button to edit it.
- Downloads last month
- 34