davinci-resolve-mcp 2.168.0 → 2.170.0
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 +49 -0
- package/README.md +1 -1
- package/README.zh-CN.md +2 -2
- package/docs/reference/api-limitations.md +2 -2
- package/install.py +1 -1
- package/package.json +1 -1
- package/resolve-advanced/server/author-interchange.mjs +27 -1
- package/resolve-advanced/server/editorial.mjs +4 -2
- package/resolve-advanced/server/tools/editorial.mjs +1 -1
- package/src/granular/common.py +1 -1
- package/src/server.py +33 -4
- package/src/utils/api_truth.py +21 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,55 @@
|
|
|
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.170.0 — E113: `get_items` knows a transition from a clip
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- **`timeline.get_items` reports `kind`** — `clip`, `transition`, or
|
|
10
|
+
`generator`. `GetItemListInTrack` lists transitions as items, and a video
|
|
11
|
+
Cross Dissolve enumerates by name; an AUDIO cross-fade enumerates with an
|
|
12
|
+
EMPTY name (measured on 19.1.3.7 on an assembled AAF turnover: 24 frames,
|
|
13
|
+
centered on the cut, between the two dialog clips), so the name can never
|
|
14
|
+
be the discriminator. A transition has no MediaPoolItem and an empty
|
|
15
|
+
property dict; a Solid Color generator has no media but transform keys;
|
|
16
|
+
everything else is a clip. An API surprise on the probe never demotes a
|
|
17
|
+
clip.
|
|
18
|
+
|
|
19
|
+
### Measured (filed in api-limitations)
|
|
20
|
+
|
|
21
|
+
- The transition entry now records the nameless audio form and the
|
|
22
|
+
media-pool/property discriminator, measured on both kinds.
|
|
23
|
+
|
|
24
|
+
## What's New in v2.169.0 — E112: round-trip QC is colour-aware
|
|
25
|
+
|
|
26
|
+
`verify_roundtrip` merged every generator leg out of the compare as "black",
|
|
27
|
+
so a fade-to-white that came back black — or a colour matte that lost its
|
|
28
|
+
colour — passed QC on geometry alone.
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
|
|
32
|
+
- **`verify_roundtrip` compares generator colours.** An input leg carrying a
|
|
33
|
+
fill colour must come back on the same track over its span with the same
|
|
34
|
+
colour (±1/255), else `generator-colour` fails; `generatorColours` reports
|
|
35
|
+
the compare. Black-only turnovers compare nothing and stay silent.
|
|
36
|
+
|
|
37
|
+
### Fixed
|
|
38
|
+
|
|
39
|
+
- **Resolve's own re-export of an authored colour reads back.** The FCP7
|
|
40
|
+
writer emits a Solid Color's colour as the FxPlug parameter `input_1`
|
|
41
|
+
(not Premiere's `fillcolor`); the walker now reads any RGB-valued
|
|
42
|
+
generator parameter. Live loop closed on 19.1.3.7: the E110 fade-to-white
|
|
43
|
+
turnover conformed, imported, rendered, re-exported, and verified
|
|
44
|
+
`pass: true` with both colours (white, and 128/64/191) compared — the
|
|
45
|
+
writer echoing the authored `EffectFiltersBA` is a second witness to the
|
|
46
|
+
blob layout. A black-for-white export fails as `generator-colour`.
|
|
47
|
+
|
|
48
|
+
### Measured (filed in api-limitations)
|
|
49
|
+
|
|
50
|
+
- The XML importer ignores a `Dip to Color Dissolve`'s colour parameter:
|
|
51
|
+
white and red imported as byte-identical default blobs and rendered inert.
|
|
52
|
+
The dip colour stays GUI-only on 19.1.3.7 (E111).
|
|
53
|
+
|
|
5
54
|
## What's New in v2.168.0 — E110: Solid Color has a colour — fade-to-white and colour mattes author
|
|
6
55
|
|
|
7
56
|
The one thing the black-leg machinery could not do was be anything but
|
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.
|
|
15
|
+
> 本翻译对应 v2.170.0 版 README。如与英文原版有出入,以 [英文原版](README.md) 为准。
|
|
16
16
|
|
|
17
17
|
一个 Model Context Protocol (MCP) 服务器,让 AI 助手通过官方脚本 API 控制 DaVinci Resolve Studio(达芬奇)。它提供完整的 API 覆盖,外加带护栏的工作流助手,涵盖剪辑、媒体池整理、渲染设置、审阅标记、调色、Fusion、Fairlight、项目生命周期任务、扩展开发,以及不碰源媒体的媒体分析。
|
|
18
18
|
|
|
@@ -89,7 +89,7 @@ equivalent, blocking full automation.
|
|
|
89
89
|
### Transition create / copy / clone
|
|
90
90
|
|
|
91
91
|
- **Object:** `Timeline / TimelineItem`
|
|
92
|
-
- **Behavior:** There is no method to ADD or CLONE an edit transition — no AddTransition/CreateTransition/AddVideoTransition on Timeline or TimelineItem (dir(), 21.0.4.5). CORRECTION, measured on Studio 21.0.4.5 (2026-08-12): this entry previously said transitions applied in the UI are 'invisible to and unmodifiable by scripts'. BOTH HALVES WERE WRONG and are withdrawn. A transition IS a first-class timeline item: a 12-frame Cross Dissolve applied through the Edit-page right-click menu enumerates in GetItemListInTrack('video', 1) as GetName()=='Cross Dissolve', GetStart()==86426, GetDuration()==12 — centered on a cut at 86432 — with a stable GetUniqueId() and a working GetTrackTypeAndIndex(). A transition authored offline into a .drp and imported reads IDENTICALLY, so the route that created it does not matter. It is also REMOVABLE: Timeline.DeleteClips([transition], False) returns True and deletes it, leaving both adjacent clips at their original starts and durations. THE DISCRIMINATOR between a transition item and a clip item is GetProperty(): a transition returns an EMPTY dict where a video clip returns 26 transform keys; it also has no MediaPoolItem and no Fusion comp. WHAT IS GENUINELY MISSING: creation, cloning, and any type/alignment/parameter detail — the transition's kind is knowable ONLY from its name string, and there is no way to read its alignment (centered/start/end) or edit its duration.
|
|
92
|
+
- **Behavior:** There is no method to ADD or CLONE an edit transition — no AddTransition/CreateTransition/AddVideoTransition on Timeline or TimelineItem (dir(), 21.0.4.5). CORRECTION, measured on Studio 21.0.4.5 (2026-08-12): this entry previously said transitions applied in the UI are 'invisible to and unmodifiable by scripts'. BOTH HALVES WERE WRONG and are withdrawn. A transition IS a first-class timeline item: a 12-frame Cross Dissolve applied through the Edit-page right-click menu enumerates in GetItemListInTrack('video', 1) as GetName()=='Cross Dissolve', GetStart()==86426, GetDuration()==12 — centered on a cut at 86432 — with a stable GetUniqueId() and a working GetTrackTypeAndIndex(). A transition authored offline into a .drp and imported reads IDENTICALLY, so the route that created it does not matter. It is also REMOVABLE: Timeline.DeleteClips([transition], False) returns True and deletes it, leaving both adjacent clips at their original starts and durations. THE DISCRIMINATOR between a transition item and a clip item is GetProperty(): a transition returns an EMPTY dict where a video clip returns 26 transform keys; it also has no MediaPoolItem and no Fusion comp. WHAT IS GENUINELY MISSING: creation, cloning, and any type/alignment/parameter detail — the transition's kind is knowable ONLY from its name string, and there is no way to read its alignment (centered/start/end) or edit its duration. AUDIO NUANCE (measured 2026-09-01 on 19.1.3.7, E113): an audio cross-fade enumerates in GetItemListInTrack('audio', n) with an EMPTY GetName() (24 frames, centered on the cut, between the two clips) — so on audio lanes even the kind is not readable from the name. The discriminator that holds for BOTH: GetMediaPoolItem() is None AND GetProperty() is empty; a Solid Color generator has no MediaPoolItem either but DOES return transform keys. timeline.get_items reports `kind`.
|
|
93
93
|
- **Workaround / current handling:** Automated QC of existing transitions IS possible and is the main practical need — enumerate GetItemListInTrack, treat any item whose GetProperty() is empty and whose GetMediaPoolItem() is None as a transition, and read its name, start and duration. Removal is scriptable via Timeline.DeleteClips. To CREATE one, either apply it in the Resolve UI, or author it offline and import: the advanced server's drp place_transition writes a cross dissolve at an abutting cut ({track, atFrame, durationFrames}) and it round-trips into Resolve 21.0.4.5 reading back at the expected centered range.
|
|
94
94
|
- **Tags:** missing-method, timeline, transition
|
|
95
95
|
|
|
@@ -313,7 +313,7 @@ equivalent, blocking full automation.
|
|
|
313
313
|
|
|
314
314
|
- **Object:** `MediaPool`
|
|
315
315
|
- **Signature:** `(filePath.xml) -> Timeline`
|
|
316
|
-
- **Behavior:** Resolve's FCP7 XML importer HONOURS a generatoritem's `fillcolor` parameter (measured on Studio 19.1.3.7, E110): a Premiere-shaped Color Matte (effectid Color, category Matte) and a Solid Color generatoritem, both with <red>/<green>/<blue>/<alpha> 0..255 values, imported as Solid Color items and rendered Y81 U90 V240 (red) and Y41 U240 V110 (blue) — exact BT.601 limited-range values for a 640x360 timeline. EXPORT_FCP_7_XML writes the fillcolor back (same 0..255 channels). EXPORT_DRT carries the colour as a 55-byte <EffectFiltersBA> on the Sm2TiGenerator: 8-byte header (version 2, length 47), a fixed 20-byte prefix, a flag byte, then big-endian uint16 A R G B (0xffff = full) plus a pad word, then a second, black colour record; only the ARGB words differed between the red and blue captures. The default generator has an EMPTY EffectFiltersBA.
|
|
316
|
+
- **Behavior:** Resolve's FCP7 XML importer HONOURS a generatoritem's `fillcolor` parameter (measured on Studio 19.1.3.7, E110): a Premiere-shaped Color Matte (effectid Color, category Matte) and a Solid Color generatoritem, both with <red>/<green>/<blue>/<alpha> 0..255 values, imported as Solid Color items and rendered Y81 U90 V240 (red) and Y41 U240 V110 (blue) — exact BT.601 limited-range values for a 640x360 timeline. EXPORT_FCP_7_XML writes the fillcolor back (same 0..255 channels). EXPORT_DRT carries the colour as a 55-byte <EffectFiltersBA> on the Sm2TiGenerator: 8-byte header (version 2, length 47), a fixed 20-byte prefix, a flag byte, then big-endian uint16 A R G B (0xffff = full) plus a pad word, then a second, black colour record; only the ARGB words differed between the red and blue captures. The default generator has an EMPTY EffectFiltersBA. The same importer does NOT carry a TRANSITION's parameters: a `Dip to Color Dissolve` transitionitem with a white and with a red `color` parameter imported as `Dip To Color Dissolve` elements whose 37-byte EffectFiltersBA were byte-identical (defaults), and the transition rendered inert (luma flat through its window, the E66 law) — the dip colour stays GUI-only on 19.1.3.7 (measured, E111). The writer emits a Solid Color's colour as the FxPlug parameter `input_1` (effectid FxPlugWrapper:C18E8B62_…), not `fillcolor` — an authored EffectFiltersBA colour came back exactly (white, 128/64/191; E112).
|
|
317
317
|
- **Workaround / current handling:** Author fade-to-white / colour mattes by placing a Solid Color generator with that blob (drp-format placeGenerator `color`, drt.assemble elements[].color) — or carry an XMEML generatoritem fillcolor through editorial.parse_interchange; the bridge authors the coloured leg.
|
|
318
318
|
- **Tags:** xml, import, generator, colour, export, drt
|
|
319
319
|
|
package/install.py
CHANGED
|
@@ -37,7 +37,7 @@ from src.utils.update_check import (
|
|
|
37
37
|
|
|
38
38
|
# ─── Version ──────────────────────────────────────────────────────────────────
|
|
39
39
|
|
|
40
|
-
VERSION = "2.
|
|
40
|
+
VERSION = "2.170.0"
|
|
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
|
@@ -905,7 +905,7 @@ export function verifyRoundtrip(inputEvents, exportedEvents, opts = {}) {
|
|
|
905
905
|
if (!v.length) return [];
|
|
906
906
|
const off = anchorOfSide(evts);
|
|
907
907
|
return v
|
|
908
|
-
.map((e) => ({ track: canonTrack(e.track), source: mapSource(canonSource(e.source)), recIn: e.recIn - off, recOut: e.recOut - off, srcIn: e.srcIn ?? 0, speed: e.speed ?? 100, reverse: Boolean(e.reverse) }))
|
|
908
|
+
.map((e) => ({ track: canonTrack(e.track), source: mapSource(canonSource(e.source)), recIn: e.recIn - off, recOut: e.recOut - off, srcIn: e.srcIn ?? 0, speed: e.speed ?? 100, reverse: Boolean(e.reverse), color: e.color && typeof e.color === 'object' ? { r: Number(e.color.r) || 0, g: Number(e.color.g) || 0, b: Number(e.color.b) || 0 } : null }))
|
|
909
909
|
.sort((a, b) => a.track.localeCompare(b.track) || a.recIn - b.recIn);
|
|
910
910
|
};
|
|
911
911
|
// FADES (E94): BL legs on the input side and the Solid Color generators a
|
|
@@ -975,6 +975,30 @@ export function verifyRoundtrip(inputEvents, exportedEvents, opts = {}) {
|
|
|
975
975
|
|
|
976
976
|
const a0 = norm(inputEvents);
|
|
977
977
|
const b0 = norm(exportedEvents);
|
|
978
|
+
// GENERATOR COLOUR (E112): a black leg is only "black" by default — an
|
|
979
|
+
// XMEML fillcolor rides on it (fade-to-white, colour mattes; E110), and
|
|
980
|
+
// Resolve's FCP7 writer emits the colour back. Black legs still merge out
|
|
981
|
+
// of the pairwise geometry compare (their extents follow the picture), but
|
|
982
|
+
// every input leg that CARRIES a colour must find an exported leg on the
|
|
983
|
+
// same track overlapping its span with the same colour — a white fade that
|
|
984
|
+
// came back black is a conform error geometry alone cannot see.
|
|
985
|
+
const generatorColours = { compared: 0, mismatches: [] };
|
|
986
|
+
const colourKey = (c) => (c ? [c.r, c.g, c.b].map((v) => Math.round(v * 255)).join(',') : '0,0,0');
|
|
987
|
+
const colourTol = 1 / 255 + 1e-9;
|
|
988
|
+
const sameColour = (x, y) => ['r', 'g', 'b'].every((k) => Math.abs((x ? x[k] : 0) - (y ? y[k] : 0)) <= colourTol);
|
|
989
|
+
{
|
|
990
|
+
const inLegs = a0.filter((e) => isBlackSeg(e) && e.color);
|
|
991
|
+
const exLegs = b0.filter((e) => isBlackSeg(e));
|
|
992
|
+
for (const leg of inLegs) {
|
|
993
|
+
const partner = exLegs.find((x) => x.track === leg.track && x.recIn < leg.recOut && x.recOut > leg.recIn);
|
|
994
|
+
generatorColours.compared += 1;
|
|
995
|
+
if (!partner) {
|
|
996
|
+
generatorColours.mismatches.push({ kind: 'generator-colour', track: leg.track, record: [leg.recIn, leg.recOut], input: colourKey(leg.color), exported: null });
|
|
997
|
+
} else if (!sameColour(leg.color, partner.color)) {
|
|
998
|
+
generatorColours.mismatches.push({ kind: 'generator-colour', track: leg.track, record: [leg.recIn, leg.recOut], input: colourKey(leg.color), exported: colourKey(partner.color) });
|
|
999
|
+
}
|
|
1000
|
+
}
|
|
1001
|
+
}
|
|
978
1002
|
const a = a0.filter((e) => !isBlackSeg(e));
|
|
979
1003
|
const b = b0.filter((e) => !isBlackSeg(e));
|
|
980
1004
|
const blackSegments = { input: a0.length - a.length, exported: b0.length - b.length };
|
|
@@ -1042,8 +1066,10 @@ export function verifyRoundtrip(inputEvents, exportedEvents, opts = {}) {
|
|
|
1042
1066
|
}
|
|
1043
1067
|
mismatches.push(...markers.mismatches);
|
|
1044
1068
|
}
|
|
1069
|
+
mismatches.push(...generatorColours.mismatches);
|
|
1045
1070
|
return {
|
|
1046
1071
|
pass: mismatches.length === 0, pairs: n, srcOffsets, mismatches, markers,
|
|
1072
|
+
...(generatorColours.compared ? { generatorColours } : {}),
|
|
1047
1073
|
...(markersNotInExport ? { markersNotInExport } : {}),
|
|
1048
1074
|
...(blackSegments.input || blackSegments.exported ? { blackSegments } : {}),
|
|
1049
1075
|
...(fadeReshapedBoundaries.length ? { fadeReshapedBoundaries } : {}),
|
|
@@ -297,8 +297,10 @@ export function parseOTIO(otio, opts = {}) {
|
|
|
297
297
|
function xmemlFillColor(g) {
|
|
298
298
|
const params = g && g.effect && g.effect.parameter ? (Array.isArray(g.effect.parameter) ? g.effect.parameter : [g.effect.parameter]) : [];
|
|
299
299
|
for (const pm of params) {
|
|
300
|
-
|
|
301
|
-
|
|
300
|
+
// Premiere writes the matte colour as `fillcolor`; Resolve's OWN writer
|
|
301
|
+
// emits a Solid Color's colour as the FxPlug input parameter `input_1`
|
|
302
|
+
// (measured E112) — any RGB-valued generator parameter is the colour.
|
|
303
|
+
if (!pm.value || typeof pm.value !== 'object' || pm.value.red == null || pm.value.green == null || pm.value.blue == null) continue;
|
|
302
304
|
const ch = (k) => { const v = Number(pm.value[k]); return Number.isFinite(v) ? Math.max(0, Math.min(255, v)) / 255 : 0; };
|
|
303
305
|
const c = { r: ch('red'), g: ch('green'), b: ch('blue'), a: pm.value.alpha != null ? ch('alpha') : 1 };
|
|
304
306
|
if (c.r === 0 && c.g === 0 && c.b === 0) return null; // black = the default leg
|
|
@@ -86,7 +86,7 @@ const markerSchema = z.object({
|
|
|
86
86
|
export const editorialTool = {
|
|
87
87
|
name: 'editorial',
|
|
88
88
|
description:
|
|
89
|
-
'Editorial integrity (Cluster E) — turnover interchange → normalized events → changelist + conform manifest with TIMING silent-lie guards (flattened retime / dropped J/L-cut audio / framerate-pulldown slip / reverse dropped / transition-handle starvation → flag, skip-not-fake). Report-only (gate: review). Actions: parse_interchange (EDL/OTIO/XMEML natively — incl. Resolve-written FCP7 -1 junction edges (paired in record order) + Solid Color / Color Matte generators carrying their `fillcolor` (BL legs with `color` → fade-to-white and colour mattes author, E110), XMEML audio-track transitionitems as audio cross-fades on numbered lanes A/A2/…, and CMX FROM/TO CLIP NAME comments over the generic AX reel — + AAF via pyaaf2 (flat sound/picture slots number A/A2/… and V/V2/… in slot order so separate beds keep their lanes; NestedScope layers keep layer numbering) + PRPROJ via gunzip+XML → normalized events incl. span-explicit transitions, BL fade legs, and freezes as zero-speed events (OTIO FreezeFrame, XMEML timeremap 0, PrProj in==out, AAF 0% motion effects); for AAF/PRPROJ pass the file PATH as content; AAF also returns per-sequence startTimecode/startFrame — build the timeline at THAT start, not the Resolve 01:00:00:00 default — and per-clip `geometry` for Avid transform effects), list_sequences (ONE offline picker entry point across xml/edl/otio/drt/drp/aaf/prproj → [{id,name,eventCount}], plus startTimecode/startFrame for AAF), convert_to_interchange (author OTIO/EDL/DRT Resolve CAN import from events or a parsed source; the EDL target writes CMX transition pairs incl. BL fades — the .prproj→Resolve conform bridge, no Premiere needed; editorial timing/transitions survive and per-clip effects/color do not. SPEED/REVERSE survive on the otio (LinearTimeWarp) and edl (M2) targets ONLY — this FLAT drt target flattens every retime to 100% forward and returns `flattened`/`flattenedCount` naming each event that lost one (`flattened` is always present on `drt`, empty when there were none); for a .drt that AUTHORS retimes/dissolves/multi-track/audio, use drt.assemble_from_interchange), turnover_changelist (diff old vs new → moved/retimed/trimmed/replaced/new/gone PLUS the junction diff: transition_added/transition_dropped/transition_changed with fade in/out or dissolve, outgoing/incoming, span and duration/type/pre-roll deltas — zero-length CMX carrier lines and the BL legs that carry fades fold into the junction diff instead of reading as gone/new sources; events pair by closest record position, consumed once, so a source cut twice at two speeds compares instance to instance; + timing flags incl. transition_dropped and dropped_split_audio on any A-track), conform_manifest (per-event assert: source resolved/handles/retime/reverse/TC-base; BL-aware — black legs need no source, fades no black-side handles, and a fade-out tail requirement lands on the picture source), marker_roundtrip (markers with provenance tags), verify_roundtrip (input events vs re-export events -> pass/mismatches + fitted per-source TC offsets + marker compare w/ markersNotInExport honesty flag; FADE-AWARE: BL/Solid-Color legs merge out as blackSegments and fade-window boundary reshapes are excused into fadeReshapedBoundaries instead of failing; RETIME-AWARE: speed/reverse compare pairwise — EXPORT_OTIO carries an authored Sm2TimeMap back as LinearTimeWarp (measured), so a flattened/lost retime fails as drift geometry alone cannot catch; AUDIO-AWARE: declared audio events compare (a video-only export such as EXPORT_EDL flags audioNotInExport instead of failing) (channel legs deduped, mismatches tagged trackType audio) while the mirrored-A1 export of a video-only turnover stays informational; the conform QC loop-closer). Offline (AAF needs pyaaf2; live AAF/DRP import is on the Python davinci-resolve MCP).',
|
|
89
|
+
'Editorial integrity (Cluster E) — turnover interchange → normalized events → changelist + conform manifest with TIMING silent-lie guards (flattened retime / dropped J/L-cut audio / framerate-pulldown slip / reverse dropped / transition-handle starvation → flag, skip-not-fake). Report-only (gate: review). Actions: parse_interchange (EDL/OTIO/XMEML natively — incl. Resolve-written FCP7 -1 junction edges (paired in record order) + Solid Color / Color Matte generators carrying their `fillcolor` (BL legs with `color` → fade-to-white and colour mattes author, E110), XMEML audio-track transitionitems as audio cross-fades on numbered lanes A/A2/…, and CMX FROM/TO CLIP NAME comments over the generic AX reel — + AAF via pyaaf2 (flat sound/picture slots number A/A2/… and V/V2/… in slot order so separate beds keep their lanes; NestedScope layers keep layer numbering) + PRPROJ via gunzip+XML → normalized events incl. span-explicit transitions, BL fade legs, and freezes as zero-speed events (OTIO FreezeFrame, XMEML timeremap 0, PrProj in==out, AAF 0% motion effects); for AAF/PRPROJ pass the file PATH as content; AAF also returns per-sequence startTimecode/startFrame — build the timeline at THAT start, not the Resolve 01:00:00:00 default — and per-clip `geometry` for Avid transform effects), list_sequences (ONE offline picker entry point across xml/edl/otio/drt/drp/aaf/prproj → [{id,name,eventCount}], plus startTimecode/startFrame for AAF), convert_to_interchange (author OTIO/EDL/DRT Resolve CAN import from events or a parsed source; the EDL target writes CMX transition pairs incl. BL fades — the .prproj→Resolve conform bridge, no Premiere needed; editorial timing/transitions survive and per-clip effects/color do not. SPEED/REVERSE survive on the otio (LinearTimeWarp) and edl (M2) targets ONLY — this FLAT drt target flattens every retime to 100% forward and returns `flattened`/`flattenedCount` naming each event that lost one (`flattened` is always present on `drt`, empty when there were none); for a .drt that AUTHORS retimes/dissolves/multi-track/audio, use drt.assemble_from_interchange), turnover_changelist (diff old vs new → moved/retimed/trimmed/replaced/new/gone PLUS the junction diff: transition_added/transition_dropped/transition_changed with fade in/out or dissolve, outgoing/incoming, span and duration/type/pre-roll deltas — zero-length CMX carrier lines and the BL legs that carry fades fold into the junction diff instead of reading as gone/new sources; events pair by closest record position, consumed once, so a source cut twice at two speeds compares instance to instance; + timing flags incl. transition_dropped and dropped_split_audio on any A-track), conform_manifest (per-event assert: source resolved/handles/retime/reverse/TC-base; BL-aware — black legs need no source, fades no black-side handles, and a fade-out tail requirement lands on the picture source), marker_roundtrip (markers with provenance tags), verify_roundtrip (input events vs re-export events -> pass/mismatches + fitted per-source TC offsets + marker compare w/ markersNotInExport honesty flag; FADE-AWARE: BL/Solid-Color legs merge out as blackSegments and fade-window boundary reshapes are excused into fadeReshapedBoundaries instead of failing; RETIME-AWARE: speed/reverse compare pairwise — EXPORT_OTIO carries an authored Sm2TimeMap back as LinearTimeWarp (measured), so a flattened/lost retime fails as drift geometry alone cannot catch; AUDIO-AWARE: declared audio events compare (a video-only export such as EXPORT_EDL flags audioNotInExport instead of failing) (channel legs deduped, mismatches tagged trackType audio) while the mirrored-A1 export of a video-only turnover stays informational; COLOUR-AWARE: an input generator leg carrying a fillcolor (fade-to-white, colour matte) must come back on the same track over its span with the same colour — Resolve\'s FCP7 writer emits it — else generator-colour fails (generatorColours reports the compare); the conform QC loop-closer). Offline (AAF needs pyaaf2; live AAF/DRP import is on the Python davinci-resolve MCP).',
|
|
90
90
|
async handler({ action, args }) {
|
|
91
91
|
if (action === 'parse_interchange') {
|
|
92
92
|
const p = parseSchema.parse(args);
|
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.
|
|
90
|
+
VERSION = "2.170.0"
|
|
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()}")
|
package/src/server.py
CHANGED
|
@@ -11,7 +11,7 @@ Usage:
|
|
|
11
11
|
python src/server.py --full # Start the 353-tool granular server instead
|
|
12
12
|
"""
|
|
13
13
|
|
|
14
|
-
VERSION = "2.
|
|
14
|
+
VERSION = "2.170.0"
|
|
15
15
|
|
|
16
16
|
import base64
|
|
17
17
|
import os
|
|
@@ -2604,6 +2604,35 @@ def _find_timeline_item_by_id(tl, timeline_item_id) -> Optional[Any]:
|
|
|
2604
2604
|
return None
|
|
2605
2605
|
|
|
2606
2606
|
|
|
2607
|
+
def _describe_track_item(it) -> Dict[str, Any]:
|
|
2608
|
+
"""One GetItemListInTrack entry → {name, id, start, end, duration, kind}.
|
|
2609
|
+
|
|
2610
|
+
Transitions ARE items in that list (api_truth): a video Cross Dissolve
|
|
2611
|
+
enumerates by its name, but an AUDIO cross-fade enumerates with an EMPTY
|
|
2612
|
+
name (measured 2026-09-01, Studio 19.1.3.7, E113) — so the name string can
|
|
2613
|
+
never be the discriminator. A transition has no MediaPoolItem and an empty
|
|
2614
|
+
GetProperty() dict; a clip has both. `kind` reports that.
|
|
2615
|
+
"""
|
|
2616
|
+
kind = "clip"
|
|
2617
|
+
try:
|
|
2618
|
+
has_media = it.GetMediaPoolItem() is not None
|
|
2619
|
+
except Exception:
|
|
2620
|
+
has_media = True # an API surprise must not demote a clip to a transition
|
|
2621
|
+
if not has_media:
|
|
2622
|
+
try:
|
|
2623
|
+
props = it.GetProperty()
|
|
2624
|
+
except Exception:
|
|
2625
|
+
props = None
|
|
2626
|
+
if not props:
|
|
2627
|
+
kind = "transition"
|
|
2628
|
+
else:
|
|
2629
|
+
kind = "generator" # no media, but transform keys: Solid Color / titles
|
|
2630
|
+
return {
|
|
2631
|
+
"name": it.GetName(), "id": it.GetUniqueId(), "start": it.GetStart(),
|
|
2632
|
+
"end": it.GetEnd(), "duration": it.GetDuration(), "kind": kind,
|
|
2633
|
+
}
|
|
2634
|
+
|
|
2635
|
+
|
|
2607
2636
|
def _get_timeline_item_for_fusion(p: Dict[str, Any]):
|
|
2608
2637
|
"""Resolve optional timeline scope for fusion_comp."""
|
|
2609
2638
|
if not _has_fusion_timeline_scope(p):
|
|
@@ -24415,7 +24444,7 @@ def timeline(action: str, params: Optional[Dict[str, Any]] = None) -> Dict[str,
|
|
|
24415
24444
|
if err:
|
|
24416
24445
|
return _err(err)
|
|
24417
24446
|
items = tl.GetItemListInTrack(track_type, track_index)
|
|
24418
|
-
return {"items": [
|
|
24447
|
+
return {"items": [_describe_track_item(it) for it in (items or [])]}
|
|
24419
24448
|
elif action == "delete_clips":
|
|
24420
24449
|
# Find timeline items by unique IDs
|
|
24421
24450
|
ids_set = set(p["clip_ids"])
|
|
@@ -26203,9 +26232,9 @@ _ACTION_HELP: Dict[str, Dict[str, Dict[str, Any]]] = {
|
|
|
26203
26232
|
},
|
|
26204
26233
|
"timeline": {
|
|
26205
26234
|
"get_items": {
|
|
26206
|
-
"summary": "List items on one track as a summary (name/id/start/end/duration).",
|
|
26235
|
+
"summary": "List items on one track as a summary (name/id/start/end/duration/kind). Transitions ARE items — a video Cross Dissolve by name, an AUDIO cross-fade with an EMPTY name — so `kind` (clip | transition | generator) is the discriminator, never the name.",
|
|
26207
26236
|
"params": "track_type (video|audio|subtitle), index|track_index (1-based)",
|
|
26208
|
-
"returns": "{items: [{name, id, start, end, duration}]}",
|
|
26237
|
+
"returns": "{items: [{name, id, start, end, duration, kind}]}",
|
|
26209
26238
|
"example": 'timeline(action="get_items", params={"track_type": "video", "index": 1})',
|
|
26210
26239
|
},
|
|
26211
26240
|
"get_items_in_track": {
|
package/src/utils/api_truth.py
CHANGED
|
@@ -889,7 +889,15 @@ API_TRUTH: List[Dict[str, Any]] = [
|
|
|
889
889
|
"comp. WHAT IS GENUINELY MISSING: creation, cloning, and any "
|
|
890
890
|
"type/alignment/parameter detail — the transition's kind is "
|
|
891
891
|
"knowable ONLY from its name string, and there is no way to "
|
|
892
|
-
"read its alignment (centered/start/end) or edit its duration."
|
|
892
|
+
"read its alignment (centered/start/end) or edit its duration. "
|
|
893
|
+
"AUDIO NUANCE (measured 2026-09-01 on 19.1.3.7, E113): an "
|
|
894
|
+
"audio cross-fade enumerates in GetItemListInTrack('audio', n) "
|
|
895
|
+
"with an EMPTY GetName() (24 frames, centered on the cut, "
|
|
896
|
+
"between the two clips) — so on audio lanes even the kind is "
|
|
897
|
+
"not readable from the name. The discriminator that holds for "
|
|
898
|
+
"BOTH: GetMediaPoolItem() is None AND GetProperty() is empty; "
|
|
899
|
+
"a Solid Color generator has no MediaPoolItem either but DOES "
|
|
900
|
+
"return transform keys. timeline.get_items reports `kind`.",
|
|
893
901
|
"recommended": "Automated QC of existing transitions IS possible and is "
|
|
894
902
|
"the main practical need — enumerate GetItemListInTrack, "
|
|
895
903
|
"treat any item whose GetProperty() is empty and whose "
|
|
@@ -2813,7 +2821,18 @@ API_TRUTH: List[Dict[str, Any]] = [
|
|
|
2813
2821
|
"A R G B (0xffff = full) plus a pad word, then a second, "
|
|
2814
2822
|
"black colour record; only the ARGB words differed between "
|
|
2815
2823
|
"the red and blue captures. The default generator has an "
|
|
2816
|
-
"EMPTY EffectFiltersBA."
|
|
2824
|
+
"EMPTY EffectFiltersBA. The same importer does NOT carry a "
|
|
2825
|
+
"TRANSITION's parameters: a `Dip to Color Dissolve` "
|
|
2826
|
+
"transitionitem with a white and with a red `color` "
|
|
2827
|
+
"parameter imported as `Dip To Color Dissolve` elements "
|
|
2828
|
+
"whose 37-byte EffectFiltersBA were byte-identical "
|
|
2829
|
+
"(defaults), and the transition rendered inert (luma flat "
|
|
2830
|
+
"through its window, the E66 law) — the dip colour stays "
|
|
2831
|
+
"GUI-only on 19.1.3.7 (measured, E111). The writer emits "
|
|
2832
|
+
"a Solid Color's colour as the FxPlug parameter `input_1` "
|
|
2833
|
+
"(effectid FxPlugWrapper:C18E8B62_…), not `fillcolor` — an "
|
|
2834
|
+
"authored EffectFiltersBA colour came back exactly (white, "
|
|
2835
|
+
"128/64/191; E112).",
|
|
2817
2836
|
"recommended": "Author fade-to-white / colour mattes by placing a "
|
|
2818
2837
|
"Solid Color generator with that blob "
|
|
2819
2838
|
"(drp-format placeGenerator `color`, drt.assemble "
|