-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdavinci-additional.html
More file actions
123 lines (122 loc) · 4.54 KB
/
davinci-additional.html
File metadata and controls
123 lines (122 loc) · 4.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="github" content="https://github.com/akarcode/" />
<meta name="repository" content="https://github.com/akarcode/DaVinciResolveProjectSettings/" />
<title>DaVinci Resolve v20 Project Settings</title>
<link rel="stylesheet" href="styles.css" />
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<script src="dropdown-data-color.js"></script>
<script src="dropdown-data-main.js"></script>
<script src="dropdown-script.js"></script>
</head>
<body>
<div class="title-header">DaVinci Resolve v20 Project Settings - Sripting API References</div>
<div class="main-container">
<div class="navigation" id="navigation">
<script src="navigation.js"></script>
</div>
<div class="content-container">
<div class="settings-container">
<div class="parameter-title">Speaker Detection</div>
<div class="parameter-container">
<div class="parameter-davinci gui">
<table>
<tbody>
<tr>
<td>
<p>To Enable Speaker Detection for Transcriptions:</p>
<ul>
<li>
v20: Right-click on a clip or timeline and select AI Tools > Audio Transcription > Use
Speaker Detection.
</li>
<li>
v19: Right-click on a clip or timeline and select Audio Transcription > Speaker Detection.
</li>
<li>Or select Speaker Detection from the Transcription window's Option menu.</li>
</ul>
</td>
</tr>
</tbody>
</table>
</div>
<div class="parameter-davinci script">
<table>
<tbody>
<tr>
<td>speakerDetection bool</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="settings-container">
<div class="parameter-title">Playback Menu Settings</div>
<div class="parameter-container">
<div class="parameter-davinci gui">
<table>
<tbody>
<tr>
<td class="align-right"><label>Playback ></label></td>
<td colspan="2">
<div class="mock-checkbox"></div>
<span>Use Optimized Media if Available</span>
</td>
</tr>
<tr>
<td class="align-right"><label>Playback > Proxy Handling ></label></td>
<td colspan="2">
<div id="perfProxyMediaMode-select-container"></div>
</td>
</tr>
<tr>
<td class="align-right"><label>Playback > Timeline Playback Resolution ></label></td>
<td colspan="2">
<div id="perfProxyResolutionRatio-select-container"></div>
</td>
</tr>
<tr>
<td class="align-right"><label>Playback > Render Cache ></label></td>
<td colspan="2">
<div id="perfRenderCacheMode-select-container"></div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="parameter-davinci script">
<table>
<tbody>
<tr>
<td>perfOptimisedMediaOn bool</td>
</tr>
<tr>
<td>
<div id="perfProxyMediaMode-value-container"></div>
</td>
</tr>
<tr>
<td>
<div id="perfProxyResolutionRatio-value-container"></div>
</td>
</tr>
<tr>
<td>
<div id="perfRenderCacheMode-value-container"></div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="settings-container">
<div class="spacer-footer"></div>
</div>
</div>
</div>
</body>
</html>