Skip to content

Commit

Permalink
Resolve 19.1.0 update
Browse files Browse the repository at this point in the history
  • Loading branch information
WheheoHu committed Nov 19, 2024
1 parent 2f69e75 commit 4eaed5b
Show file tree
Hide file tree
Showing 53 changed files with 4,875 additions and 17,087 deletions.
998 changes: 998 additions & 0 deletions Davinci_README/19_1_0/README.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sidebar_label: Introduction



💡 Last Updated: 3 October 2024
💡 Last Updated: 28 October 2024

---

Expand Down
40 changes: 33 additions & 7 deletions docs/resolve_api/Gallery.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,51 @@
### GetAlbumName(galleryStillAlbum)
> New in 19.1.0
### GetGalleryPowerGradeAlbums()

Return Type: `[galleryStillAlbum]`

Returns the gallery PowerGrade albums as a list of GalleryStillAlbum objects.

### CreateGalleryStillAlbum()

Return Type: `galleryStillAlbum`

Returns a newly created Still album (GalleryStillAlbum object), or None if not successful.

### CreateGalleryPowerGradeAlbum()

Return Type: `galleryStillAlbum`

Returns a newly created PowerGrade album (GalleryStillAlbum object), or None if not successful.

---

### GetAlbumName(galleryStillAlbum)

Return Type: `string`

Returns the name of the [GalleryStillAlbum](./GalleryStillAlbum.md) object 'galleryStillAlbum'.

### GetCurrentStillAlbum()
### GetCurrentStillAlbum()

Return Type: `galleryStillAlbum`

Returns current album as a [GalleryStillAlbum](./GalleryStillAlbum.md) object.

### GetGalleryStillAlbums()
### GetGalleryStillAlbums()

Return Type: `[galleryStillAlbum]`

Returns the gallery albums as a list of [GalleryStillAlbum](./GalleryStillAlbum.md) objects.
Returns the gallery still albums as a list of [GalleryStillAlbum](./GalleryStillAlbum.md) objects.

### SetAlbumName(galleryStillAlbum, albumName)

### SetAlbumName(galleryStillAlbum, albumName)
Return Type: `Bool`

Sets the name of the GalleryStillAlbum object 'galleryStillAlbum' to 'albumName

### SetCurrentStillAlbum(galleryStillAlbum)
### SetCurrentStillAlbum(galleryStillAlbum)

Return Type: `Bool`

Sets current album to GalleryStillAlbum object 'galleryStillAlbum'.

39 changes: 39 additions & 0 deletions docs/resolve_api/Graph.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,42 @@
> New in 19.1.0
### ApplyGradeFromDRX(path, gradeMode)
Return Type: `Bool`

Loads a still from given file `path` (`string`) and applies grade to graph with `gradeMode` (`int`):
- 0 - “No keyframes”
- 1 - “Source Timecode aligned”
- 2 - “Start Frames aligned”.

### ApplyArriCdlLut()

Return Type: `Bool`

Applies ARRI CDL and LUT. Returns True if successful, False otherwise.

### ResetAllGrades()

Return Type: `Bool`

Returns True if all grades were reset successfully, False otherwise.


### SetNodeCacheMode(nodeIndex, cache_value)
Return Type: `Bool`

Sets the cache mode type on the node mapping the node index provided. Refer to [Cache Mode](../resolve_settings/CacheModeInformation.md) section below to find the possible values of cache_value.

### GetNodeCacheMode(nodeIndex)

Return Type: `int`(cache_value)

Returns the cache mode type on the node mapping the node index provided.




----


### GetNumNodes()
Return Type: `int`

Expand Down
11 changes: 11 additions & 0 deletions docs/resolve_api/MediaPool.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
> New in 19.0.2
### AutoSyncAudio([MediaPoolItems], \{audioSyncSettings\})
Return Type: `Bool`

Syncs audio for specified [MediaPoolItems] (list). The list must contain a minimum of **two** MediaPoolItems - at least one video and one audio clip.

Returns True if successful. Refer to [Audio Sync Settings](../resolve_settings/AudioSyncSettings.md) section for details.


-----
> New in 19.0.2
### GetSelectedClips()
Return Type: `[MediaPoolItems]`

Expand Down
24 changes: 23 additions & 1 deletion docs/resolve_api/MediaPoolItem.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,34 @@
> New in 19.1.0
### GetMarkInOut()
Return Type: `{mark}`

Returns dict of in/out marks set (keys omitted if not set), example:
```python
{'video': {'in': 0, 'out': 134}, 'audio': {'in': 0, 'out': 134}}
```

### SetMarkInOut(in, out, type="all")
Return Type: `Bool`

Sets mark in/out of type `video`, `audio` or `all` (default).

### ClearMarkInOut(type="all")
Return Type: `Bool`

Clears mark in/out of type `video`, `audio` or `all` (default).



---
> New in 19.0.2
### GetThirdPartyMetadata(metadataType=None)
Return Type: `string|dict`

Returns the third party metadata value for the key 'metadataType'.

If no argument is specified, a dict of all set third parth metadata properties is returned.
If no argument is specified, a dict of all set third party metadata properties is returned.


### SetThirdPartyMetadata(metadataType, metadataValue)
Expand Down
Loading

0 comments on commit 4eaed5b

Please sign in to comment.