davinci-resolve-mcp 2.156.0 → 2.156.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/README.md +3 -1
- package/README.zh-CN.md +4 -2
- package/docs/guides/native-drt-authoring.md +30 -2
- package/install.py +1 -1
- package/package.json +1 -1
- package/src/granular/common.py +1 -1
- package/src/server.py +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
Release history for the DaVinci Resolve MCP Server. The latest release is summarized in the root README; older entries live here to keep the README focused.
|
|
4
4
|
|
|
5
|
+
## What's New in v2.156.1 — docs catch up with the fade + QC arc
|
|
6
|
+
|
|
7
|
+
### Documentation
|
|
8
|
+
|
|
9
|
+
- `docs/guides/native-drt-authoring.md` learns the v2.148–2.156 arc: the
|
|
10
|
+
A1–A16 audio ceiling, the fade capability row and the fade/AAF-overlap
|
|
11
|
+
laws, the `blackLegs` ledger field, and the full `verify_roundtrip`
|
|
12
|
+
surface (markers, fades, retimes, audio) in the delivery checklist.
|
|
13
|
+
- The Native .drt Authoring and Headless Edit Loop guides are now linked
|
|
14
|
+
from both READMEs' guide tables — both were orphaned.
|
|
15
|
+
|
|
5
16
|
## What's New in v2.156.0 — the QC loop learns audio; the verify surface is complete
|
|
6
17
|
|
|
7
18
|
### Added
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
English | [简体中文](README.zh-CN.md)
|
|
4
4
|
|
|
5
|
-
[](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
|
|
6
6
|
[](https://www.npmjs.com/package/davinci-resolve-mcp)
|
|
7
7
|
[](docs/reference/api-coverage.md)
|
|
8
8
|
[-blue.svg)](#server-modes)
|
|
@@ -303,6 +303,8 @@ For method-by-method status, see [API Coverage and Test Results](docs/reference/
|
|
|
303
303
|
| [Multicam Setup Helper Guide](docs/guides/multicam-setup-guide.md) | Stacked timeline prep, helper/API boundary, and Resolve UI conversion steps |
|
|
304
304
|
| [Editorial Decision Guide](docs/guides/editorial-decision-guide.md) | Project-owned editorial craft guidance for analysis and timeline decisions |
|
|
305
305
|
| [Conforming an Avid AAF](docs/guides/conforming-an-avid-aaf.md) | Why all three Resolve-native routes fail on a consolidated turnover, and which one is dangerous |
|
|
306
|
+
| [Native .drt Authoring](docs/guides/native-drt-authoring.md) | Offline template-spliced timeline authoring: cuts, retimes, transitions, fades, markers, compounds — and the measured laws behind them |
|
|
307
|
+
| [Headless Edit Loop](docs/guides/headless-edit-loop.md) | Driving Resolve from the command line: which interchange formats relink and round-trip, measured in GUI and -nogui |
|
|
306
308
|
| [Color Decision Guide](docs/guides/color-decision-guide.md) | Project-owned color correction guidance and Resolve color API boundaries |
|
|
307
309
|
| [Contributing and Project Layout](docs/contributing.md) | Contribution workflow, platform support, security notes, repository structure |
|
|
308
310
|
| [Security Policy](SECURITY.md) | Local stdio trust boundary, tool metadata, confirmation guidance, reporting |
|
package/README.zh-CN.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[English](README.md) | 简体中文
|
|
4
4
|
|
|
5
|
-
[](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
|
|
6
6
|
[](https://www.npmjs.com/package/davinci-resolve-mcp)
|
|
7
7
|
[](docs/reference/api-coverage.md)
|
|
8
8
|
[-blue.svg)](#服务器模式)
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
[](https://www.python.org/downloads/)
|
|
13
13
|
[](https://opensource.org/licenses/MIT)
|
|
14
14
|
|
|
15
|
-
> 本翻译对应 v2.156.
|
|
15
|
+
> 本翻译对应 v2.156.1 版 README。如与英文原版有出入,以 [英文原版](README.md) 为准。
|
|
16
16
|
|
|
17
17
|
一个 Model Context Protocol (MCP) 服务器,让 AI 助手通过官方脚本 API 控制 DaVinci Resolve Studio(达芬奇)。它提供完整的 API 覆盖,外加带护栏的工作流助手,涵盖剪辑、媒体池整理、渲染设置、审阅标记、调色、Fusion、Fairlight、项目生命周期任务、扩展开发,以及不碰源媒体的媒体分析。
|
|
18
18
|
|
|
@@ -221,6 +221,8 @@ DRX 调色写入**针对 Resolve Studio 做过实机校准**:调色参数默
|
|
|
221
221
|
| [多机位设置助手指南](docs/guides/multicam-setup-guide.md) | 堆叠时间线准备、助手/API 边界、Resolve UI 转换步骤 |
|
|
222
222
|
| [剪辑决策指南](docs/guides/editorial-decision-guide.md) | 项目自有的剪辑手艺指引,用于分析与时间线决策 |
|
|
223
223
|
| [套底 Avid AAF](docs/guides/conforming-an-avid-aaf.md) | 为何三条 Resolve 原生路径在合并交接上全部失败,以及哪条最危险 |
|
|
224
|
+
| [原生 .drt 离线创作](docs/guides/native-drt-authoring.md) | 离线模板拼接式时间线创作:剪切、变速、转场、淡入淡出、标记、复合片段,以及背后的实测规律 |
|
|
225
|
+
| [无界面剪辑循环](docs/guides/headless-edit-loop.md) | 纯命令行驱动 Resolve:哪些交换格式能重新链接并往返,GUI 与 -nogui 双双实测 |
|
|
224
226
|
| [调色决策指南](docs/guides/color-decision-guide.md) | 项目自有的校色指引与 Resolve 调色 API 边界 |
|
|
225
227
|
| [贡献与项目布局](docs/contributing.md) | 贡献流程、平台支持、安全说明、仓库结构 |
|
|
226
228
|
| [安全策略](SECURITY.md) | 本地 stdio 信任边界、工具元数据、确认指引、漏洞报告 |
|
|
@@ -45,6 +45,7 @@ window. `render.verify_output` covers the container-level checks.
|
|
|
45
45
|
| Wipes (EDL `W`-codes) | `transitions[].type: 'wipe'` (single soft-edge style — host-importer parity) | v2.138 |
|
|
46
46
|
| Transition styles | `transitions[].type: 'dip' \| 'additive' \| 'fade-to-color' \| 'smooth-cut' \| 'non-additive'` (XMEML effectids route automatically) | v2.140 |
|
|
47
47
|
| Audio cross-fades | `transitions[].trackType: 'audio'` | v2.116 |
|
|
48
|
+
| Fades to/from black | EDL `BL` dissolves, OTIO gap-adjacent Transitions, XMEML/PrProj edge spans, AAF filler-adjacent Transitions — authored as Solid-Color-generator dissolves | v2.150–2.155 |
|
|
48
49
|
| Constant retimes, forward | `cuts[].speed` (e.g. `0.5`) | v2.113 |
|
|
49
50
|
| Constant retimes, reverse | `cuts[].reverse` | v2.114 |
|
|
50
51
|
| Freeze frames | `cuts[].freeze` (holds source frame `srcIn`) | v2.134 |
|
|
@@ -70,7 +71,8 @@ plus a `sourceMap` — all five formats are route-proven end-to-end
|
|
|
70
71
|
(parse → assemble → import → measured frames and RMS) — and
|
|
71
72
|
returns an honesty ledger
|
|
72
73
|
(`authoredTransitions`, `droppedTransitions` with reasons, `authoredRetimes`,
|
|
73
|
-
`flattenedRetimes`, `authoredAudioEvents`, `upperTrackCutsVideoOnly
|
|
74
|
+
`flattenedRetimes`, `authoredAudioEvents`, `upperTrackCutsVideoOnly`,
|
|
75
|
+
`blackLegs` for authored fade generators and skipped audio-silence legs).
|
|
74
76
|
|
|
75
77
|
## The laws (why the constraints are what they are)
|
|
76
78
|
|
|
@@ -153,6 +155,24 @@ for the post-cut portion. Off-center spans render (blend measured across an
|
|
|
153
155
|
uneven [cut-6, cut+18) span); everything unauthorable stays in
|
|
154
156
|
`droppedTransitions` with the reason.
|
|
155
157
|
|
|
158
|
+
**Fade law.** A transition needs a physical item on BOTH sides of its
|
|
159
|
+
junction: a hand-authored single-sided transition element (span at a lone
|
|
160
|
+
clip head or tail) refuses to import entirely, and Resolve's own EDL
|
|
161
|
+
importer silently DROPS dissolves involving the `BL` reel (the fade-in
|
|
162
|
+
vanishes; the fade-out hard-cuts into the Solid Color it creates). The
|
|
163
|
+
authorable form — used automatically by `assemble_from_interchange` for all
|
|
164
|
+
five formats — is a real clip↔Solid-Color-generator dissolve: a zero-length
|
|
165
|
+
black leg materializes/grows to cover its side of the span (empty track
|
|
166
|
+
renders black, so the growth is render-neutral), and the CMX zero-length
|
|
167
|
+
fade-in slug grows through the boundary shift. Audio fades to silence have
|
|
168
|
+
no authorable form (no silence source) and drop with the stated reason.
|
|
169
|
+
|
|
170
|
+
**AAF overlap law.** An AAF Transition CONSUMES record time: the incoming
|
|
171
|
+
component legitimately overlaps the outgoing by the transition duration.
|
|
172
|
+
The bridge trims the outgoing's tail to the overlap start and lets the
|
|
173
|
+
boundary shift re-extend it to the `CutPoint` — the AAF notional-cut
|
|
174
|
+
semantics exactly.
|
|
175
|
+
|
|
156
176
|
## Verification checklist for a delivered .drt
|
|
157
177
|
|
|
158
178
|
1. `timeline.import_timeline_checked` — expect `linked == total` for media
|
|
@@ -170,7 +190,15 @@ uneven [cut-6, cut+18) span); everything unauthorable stays in
|
|
|
170
190
|
verifier normalizes track labels, source naming, and per-source
|
|
171
191
|
TC-absolute source frames (fitting the offsets, e.g. 86400 for a
|
|
172
192
|
01:00:00:00 source) — `pass: true` means the authored timeline's export
|
|
173
|
-
matches the turnover's intent event-for-event.
|
|
193
|
+
matches the turnover's intent event-for-event. The verify surface covers
|
|
194
|
+
the whole authored family: timeline markers (`markersNotInExport` flags a
|
|
195
|
+
marker-less export instead of failing — EXPORT_OTIO drops them), fades
|
|
196
|
+
(BL/Solid-Color legs merge out as `blackSegments`; fade-window boundary
|
|
197
|
+
reshapes are excused into `fadeReshapedBoundaries`, never silently),
|
|
198
|
+
retimes (speed/reverse compare pairwise — EXPORT_OTIO round-trips an
|
|
199
|
+
authored Sm2TimeMap as LinearTimeWarp), and audio (declared audio events
|
|
200
|
+
compare with `trackType: 'audio'` tags; the A1 convenience mirror on a
|
|
201
|
+
video-only turnover stays informational).
|
|
174
202
|
|
|
175
203
|
## References
|
|
176
204
|
|
package/install.py
CHANGED
|
@@ -37,7 +37,7 @@ from src.utils.update_check import (
|
|
|
37
37
|
|
|
38
38
|
# ─── Version ──────────────────────────────────────────────────────────────────
|
|
39
39
|
|
|
40
|
-
VERSION = "2.156.
|
|
40
|
+
VERSION = "2.156.1"
|
|
41
41
|
# Only hard floor: mcp[cli] requires Python 3.10+. There is no upper bound —
|
|
42
42
|
# Resolve's scripting bridge loads into newer interpreters on recent builds
|
|
43
43
|
# (Python 3.14 verified against Resolve Studio 20.3.2). Older Resolve builds
|
package/package.json
CHANGED
package/src/granular/common.py
CHANGED
|
@@ -87,7 +87,7 @@ if not logging.getLogger().handlers:
|
|
|
87
87
|
handlers=[logging.StreamHandler()],
|
|
88
88
|
)
|
|
89
89
|
|
|
90
|
-
VERSION = "2.156.
|
|
90
|
+
VERSION = "2.156.1"
|
|
91
91
|
logger = logging.getLogger("davinci-resolve-mcp")
|
|
92
92
|
logger.info(f"Starting DaVinci Resolve MCP Server v{VERSION}")
|
|
93
93
|
logger.info(f"Detected platform: {get_platform()}")
|