davinci-resolve-mcp 2.142.0 → 2.142.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 +13 -0
- package/README.md +1 -1
- package/README.zh-CN.md +2 -2
- package/install.py +1 -1
- package/package.json +1 -1
- package/resolve-advanced/server/aaf_probe.py +6 -1
- package/src/granular/common.py +1 -1
- package/src/server.py +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
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.142.1 — the AAF leg joins the span fix
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- **AAF dissolves were misaligned by half their duration**: the AAF walker
|
|
10
|
+
rewinds the incoming clip to the overlap START (the Edit Protocol
|
|
11
|
+
subtraction), so the parsed junction is the overlap's first frame — and the
|
|
12
|
+
old centered placement put half the blend before the overlap even began.
|
|
13
|
+
AAF transitions now carry `alignment: 'start'` through the same
|
|
14
|
+
render-proven span machinery as EDL (v2.142.0): span `[overlapStart,
|
|
15
|
+
overlapStart+dur)`, boundary shifted to the middle — which lands the
|
|
16
|
+
notional cut exactly at the AAF CutPoint default (centered in the overlap).
|
|
17
|
+
|
|
5
18
|
## What's New in v2.142.0 — transition span fidelity, and the edge law
|
|
6
19
|
|
|
7
20
|
### Changed (conform fidelity)
|
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)
|
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.142.
|
|
15
|
+
> 本翻译对应 v2.142.1 版 README。如与英文原版有出入,以 [英文原版](README.md) 为准。
|
|
16
16
|
|
|
17
17
|
一个 Model Context Protocol (MCP) 服务器,让 AI 助手通过官方脚本 API 控制 DaVinci Resolve Studio(达芬奇)。它提供完整的 API 覆盖,外加带护栏的工作流助手,涵盖剪辑、媒体池整理、渲染设置、审阅标记、调色、Fusion、Fairlight、项目生命周期任务、扩展开发,以及不碰源媒体的媒体分析。
|
|
18
18
|
|
package/install.py
CHANGED
|
@@ -37,7 +37,7 @@ from src.utils.update_check import (
|
|
|
37
37
|
|
|
38
38
|
# ─── Version ──────────────────────────────────────────────────────────────────
|
|
39
39
|
|
|
40
|
-
VERSION = "2.142.
|
|
40
|
+
VERSION = "2.142.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
|
@@ -1169,7 +1169,12 @@ def _walk_components(sequence, *, track, fps, rec, state, depth, transition=None
|
|
|
1169
1169
|
try:
|
|
1170
1170
|
if cls == "Transition":
|
|
1171
1171
|
duration = _length(comp)
|
|
1172
|
-
|
|
1172
|
+
# alignment 'start': after the rewind, the incoming clip's recIn IS the
|
|
1173
|
+
# overlap start, so the transition span is [recIn, recIn+duration) — and
|
|
1174
|
+
# the bridge's boundary-shift lands the notional cut at recIn+duration/2,
|
|
1175
|
+
# exactly the AAF CutPoint default (centered in the overlap). The old
|
|
1176
|
+
# centered-on-recIn placement put HALF the blend before the overlap began.
|
|
1177
|
+
pending_transition = {"type": "dissolve", "duration": duration, "alignment": "start"}
|
|
1173
1178
|
# Rewind: the next component overlaps the previous one by `duration`.
|
|
1174
1179
|
# Clamped at this sequence's own start — a leading transition has no
|
|
1175
1180
|
# preceding material to overlap, and a negative record position would
|
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.142.
|
|
90
|
+
VERSION = "2.142.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()}")
|