davinci-resolve-mcp 2.103.5 → 2.104.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 +52 -0
- package/README.md +1 -1
- package/README.zh-CN.md +2 -2
- package/docs/reference/api-limitations.md +41 -1
- package/docs/reference/readwrite-symmetry.md +2 -6
- package/install.py +1 -1
- package/package.json +1 -1
- package/src/granular/common.py +1 -1
- package/src/server.py +224 -4
- package/src/utils/api_truth.py +84 -0
- package/src/utils/resolve_versions.py +17 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,58 @@
|
|
|
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.104.0
|
|
6
|
+
|
|
7
|
+
The read/write symmetry audit's worklist, worked. PR #162's AST rewrite left
|
|
8
|
+
eight `set_` actions with no readback; live probing on Studio 19.1.3.7 sorted
|
|
9
|
+
them into four the API supports and four it simply cannot — and turned up a
|
|
10
|
+
render-pipeline failure mode along the way.
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- `media_pool.get_clip_marks` — read mark in/out for a set of media-pool clips,
|
|
15
|
+
the read twin of `set_clip_marks` (live-verified round trip: set 12/60, read
|
|
16
|
+
12/60).
|
|
17
|
+
- `timeline.get_clips_linked` — per-item link readback via
|
|
18
|
+
`TimelineItem.GetLinkedItems` (live-verified: a video item returns its audio
|
|
19
|
+
twin).
|
|
20
|
+
- `timeline.get_title_text` — the read twin of `set_title_text`. Resolves the
|
|
21
|
+
same heuristic title-property keys as the setter, and falls back to reading
|
|
22
|
+
`StyledText` off the TextPlus tool in the item's Fusion comp — on Studio
|
|
23
|
+
19.1.3 the property route exposes no title keys at all (the setter fails
|
|
24
|
+
there too), while the comp route reads and writes fine.
|
|
25
|
+
- `media_pool_item_markers.get_name` — the markers group carried `set_name`
|
|
26
|
+
with no read twin.
|
|
27
|
+
- `render.verify_output(job_id)` — checks the actual output file against the
|
|
28
|
+
job's own mark range: existence, size, ffprobe duration, and a
|
|
29
|
+
duration-ratio warning when a Complete job produced a near-empty stub (the
|
|
30
|
+
issue #164 signature: content the render engine never visited). Verify
|
|
31
|
+
before deleting the job — deleted jobs carry no TargetDir to check.
|
|
32
|
+
|
|
33
|
+
### Documented (api_truth, Blackmagic-facing report regenerated)
|
|
34
|
+
|
|
35
|
+
Four readbacks the API cannot express, each now a submit-tagged entry:
|
|
36
|
+
`SetCDL` (no GetCDL anywhere — read grades via DRX decode instead),
|
|
37
|
+
`SetNodeEnabled` (no GetNodeEnabled), `SetKeyframeInterpolation` (nothing
|
|
38
|
+
returns interpolation; the whole keyframe family is absent on 19.1.3), and
|
|
39
|
+
`SetHighPriority` (no getter, irreversible per session). The symmetry report's
|
|
40
|
+
high-signal gap list is now exactly these four.
|
|
41
|
+
|
|
42
|
+
And one render-pipeline bug found the hard way: **deleting or closing a
|
|
43
|
+
project while its render job is running wedges Resolve** — the orphaned
|
|
44
|
+
render's `IsRenderingInProgress` sticks True on every subsequent project,
|
|
45
|
+
`StopRendering` does not clear it, new render jobs sit at 0% forever, then
|
|
46
|
+
`StartRendering` starts returning False and `Resolve.Quit()` is refused
|
|
47
|
+
behind a quit-confirm dialog. Reproduced live on Studio 19.1.3.7. Poll
|
|
48
|
+
`GetRenderJobStatus` for completion, never `IsRenderingInProgress`, and never
|
|
49
|
+
close a project mid-render.
|
|
50
|
+
|
|
51
|
+
### Version ledger
|
|
52
|
+
|
|
53
|
+
`MediaPoolItem.GetMarkInOut` and `TimelineItem.GetLinkedItems` enter the
|
|
54
|
+
evidence gates as measured-present on 19.1.3.7 (introduction versions
|
|
55
|
+
unbisected; the floors err toward refusing on older builds).
|
|
56
|
+
|
|
5
57
|
## What's New in v2.103.5
|
|
6
58
|
|
|
7
59
|
Two fixes that fell out of auditing the code around this week's releases — the
|
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.104.0 版 README。如与英文原版有出入,以 [英文原版](README.md) 为准。
|
|
16
16
|
|
|
17
17
|
一个 Model Context Protocol (MCP) 服务器,让 AI 助手通过官方脚本 API 控制 DaVinci Resolve Studio(达芬奇)。它提供完整的 API 覆盖,外加带护栏的工作流助手,涵盖剪辑、媒体池整理、渲染设置、审阅标记、调色、Fusion、Fairlight、项目生命周期任务、扩展开发,以及不碰源媒体的媒体分析。
|
|
18
18
|
|
|
@@ -12,7 +12,7 @@ that none exists).
|
|
|
12
12
|
|
|
13
13
|
**Verified on:** DaVinci Resolve Studio 21.0.2
|
|
14
14
|
|
|
15
|
-
**Totals:**
|
|
15
|
+
**Totals:** 33 missing capabilities, 39 bugs / unreliable behaviors.
|
|
16
16
|
|
|
17
17
|
The authoritative source is the runtime-queryable `api_truth` ledger
|
|
18
18
|
(`resolve_control api_truth "<query>"`); this document is generated from
|
|
@@ -239,6 +239,38 @@ equivalent, blocking full automation.
|
|
|
239
239
|
- **Workaround / current handling:** Check GetRenderCodecs(format) first; when it is empty, treat the format as unreachable through this API rather than guessing a codec value. Render audio-only via ExportVideo=False on a format that does expose codecs, or drive it from a saved render preset.
|
|
240
240
|
- **Tags:** render, deliver, audio, unsupported
|
|
241
241
|
|
|
242
|
+
### TimelineItem.SetCDL (write-only — no GetCDL anywhere)
|
|
243
|
+
|
|
244
|
+
- **Object:** `TimelineItem`
|
|
245
|
+
- **Signature:** `({NodeIndex, Slope, Offset, Power, Saturation}) -> Bool`
|
|
246
|
+
- **Behavior:** SetCDL writes a node's CDL but no object exposes a read: no GetCDL on TimelineItem or Graph in the API reference, and dir() on a live Graph confirms (Studio 19.1.3.7). A grade applied via SetCDL cannot be read back, diffed, or verified through the API.
|
|
247
|
+
- **Workaround / current handling:** Track intended CDL values in the caller, or read the actual grade by exporting a DRX still and decoding it (this repo's drx tool decodes 100% of DRX params — slope/offset/power/sat included).
|
|
248
|
+
- **Tags:** color, missing-method, readback
|
|
249
|
+
|
|
250
|
+
### Graph.SetNodeEnabled (write-only — no GetNodeEnabled)
|
|
251
|
+
|
|
252
|
+
- **Object:** `Graph`
|
|
253
|
+
- **Signature:** `(nodeIndex, bool) -> Bool`
|
|
254
|
+
- **Behavior:** A node's bypass state can be set but never read: no GetNodeEnabled in the API reference, and dir() on a live Graph confirms (Studio 19.1.3.7). After a SetNodeEnabled the caller cannot verify it took, and the pre-existing state of a node someone toggled in the UI is unknowable.
|
|
255
|
+
- **Workaround / current handling:** Treat node-enable state as write-only: record what you set, and verify visually (rendered-frame compare) when the state matters.
|
|
256
|
+
- **Tags:** color, missing-method, readback
|
|
257
|
+
|
|
258
|
+
### TimelineItem.SetKeyframeInterpolation (write-only)
|
|
259
|
+
|
|
260
|
+
- **Object:** `TimelineItem`
|
|
261
|
+
- **Signature:** `(property, frame, type) -> Bool`
|
|
262
|
+
- **Behavior:** Interpolation can be written per keyframe but nothing returns it: GetKeyframeAtIndex/GetPropertyAtKeyframeIndex expose frame and value only (API reference). On Studio 19.1.3.7 the whole keyframe method family is absent from dir() — these methods are 20.x+.
|
|
263
|
+
- **Workaround / current handling:** Record interpolation choices in the caller; readback is not available at any version.
|
|
264
|
+
- **Tags:** timeline, missing-method, readback, keyframes
|
|
265
|
+
|
|
266
|
+
### Resolve.SetHighPriority (write-only, irreversible per session)
|
|
267
|
+
|
|
268
|
+
- **Object:** `Resolve`
|
|
269
|
+
- **Signature:** `() -> Bool`
|
|
270
|
+
- **Behavior:** Raises the Resolve process priority; there is no getter and no way to lower it again through the API (confirmed absent from dir() on Studio 19.1.3.7).
|
|
271
|
+
- **Workaround / current handling:** Call it only when the user asked for a long render on a dedicated machine; state cannot be read back or undone without restarting Resolve.
|
|
272
|
+
- **Tags:** app-control, missing-method, readback
|
|
273
|
+
|
|
242
274
|
### TimelineItem.CreateMagicMask (needs operator clicks)
|
|
243
275
|
|
|
244
276
|
- **Object:** `TimelineItem`
|
|
@@ -564,3 +596,11 @@ values, or automation-hostile modal prompts.
|
|
|
564
596
|
- **Behavior:** The returned TimelineItem objects can have an unreadable/empty GetUniqueId, notably when the clipInfo recordFrame lands in a span still occupied by another item (any duplicate-then-delete 'move' whose offset is smaller than the item duration hits this). The item may not actually exist on the timeline. A session that trusted the non-empty return and deleted the sources lost 26 clips (Portugal timeline, 2026-08-19).
|
|
565
597
|
- **Workaround / current handling:** Never treat AppendToTimeline's return as proof of placement. Re-enumerate the track and match on record frame + duration before any dependent delete; never shift items by duplicate-then-delete into occupied spans — use timeline.ripple_insert, which rebuilds the tail into free space and verifies by readback.
|
|
566
598
|
- **Tags:** editorial, silent-failure, unreliable-return, timeline
|
|
599
|
+
|
|
600
|
+
### Project.IsRenderingInProgress (stuck True after deleting the rendering project)
|
|
601
|
+
|
|
602
|
+
- **Object:** `Project`
|
|
603
|
+
- **Signature:** `() -> Bool`
|
|
604
|
+
- **Behavior:** Deleting or closing a project while its render job is still running orphans the render and wedges the whole render pipeline: the output file stops growing and Resolve idles at 0% CPU, IsRenderingInProgress on the NEXT current project reports True indefinitely, StopRendering does not clear it, NEW render jobs sit at 0% forever (then StartRendering starts returning False), and Resolve.Quit() is refused because the app believes a render is running — even project creation can start returning None behind the quit-confirm dialog (reproduced live on Studio 19.1.3.7, 2026-08-29).
|
|
605
|
+
- **Workaround / current handling:** Never close or delete a project while IsRenderingInProgress is True — StopRendering first, wait for False, then close. Once wedged, only a manual quit (confirming the dialog) or force-quit clears it; treat a True that persists at 0% CPU with a static output file as stuck rather than rendering. Poll GetRenderJobStatus for completion instead of IsRenderingInProgress, which this failure poisons.
|
|
606
|
+
- **Tags:** render, silent-failure, unreliable-return
|
|
@@ -3,19 +3,15 @@
|
|
|
3
3
|
# Read/Write Symmetry Audit
|
|
4
4
|
|
|
5
5
|
- write-style action occurrences scanned: **116**
|
|
6
|
-
- write-style action occurrences with a matching read: **
|
|
7
|
-
- distinct high-signal `set_` actions without a direct/known readback: **
|
|
6
|
+
- write-style action occurrences with a matching read: **71**
|
|
7
|
+
- distinct high-signal `set_` actions without a direct/known readback: **4**
|
|
8
8
|
|
|
9
9
|
## High-signal gaps — `set_` with no direct/known readback
|
|
10
10
|
|
|
11
11
|
- `set_cdl`
|
|
12
|
-
- `set_clip_marks`
|
|
13
|
-
- `set_clips_linked`
|
|
14
12
|
- `set_high_priority`
|
|
15
13
|
- `set_keyframe_interpolation`
|
|
16
|
-
- `set_name`
|
|
17
14
|
- `set_node_enabled`
|
|
18
|
-
- `set_title_text`
|
|
19
15
|
|
|
20
16
|
## Low-signal (create/add/insert/apply/import — usually expected): 40 distinct names
|
|
21
17
|
|
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.104.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
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.104.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.104.0"
|
|
15
15
|
|
|
16
16
|
import base64
|
|
17
17
|
import os
|
|
@@ -5612,6 +5612,76 @@ def _timeline_title_property_scan(tl, p: Dict[str, Any]):
|
|
|
5612
5612
|
}
|
|
5613
5613
|
|
|
5614
5614
|
|
|
5615
|
+
def _timeline_get_title_text(tl, p: Dict[str, Any]) -> Dict[str, Any]:
|
|
5616
|
+
"""Read a title item's text back — the read twin of set_title_text.
|
|
5617
|
+
|
|
5618
|
+
Same key resolution as the setter: an explicit property_key wins, otherwise
|
|
5619
|
+
the heuristic title-key candidates from the item's property map. Returns the
|
|
5620
|
+
first key that holds a non-empty string, plus every candidate's value so a
|
|
5621
|
+
caller can see which key actually carries the text on this generator.
|
|
5622
|
+
"""
|
|
5623
|
+
item, err = _timeline_resolve_item_optional(tl, p)
|
|
5624
|
+
if err:
|
|
5625
|
+
return err
|
|
5626
|
+
property_key = p.get("property_key") or p.get("key")
|
|
5627
|
+
keys: List[str] = []
|
|
5628
|
+
if property_key:
|
|
5629
|
+
keys.append(str(property_key))
|
|
5630
|
+
else:
|
|
5631
|
+
flat, exc_text = _timeline_item_get_property_map(item, _ser)
|
|
5632
|
+
if exc_text and not flat:
|
|
5633
|
+
return _err(f"GetProperty failed: {exc_text}")
|
|
5634
|
+
for row in _candidate_title_property_keys(flat):
|
|
5635
|
+
if row["key"] not in keys:
|
|
5636
|
+
keys.append(row["key"])
|
|
5637
|
+
if not keys:
|
|
5638
|
+
keys = ["Styled Text", "StyledText", "Text", "Rich Text"]
|
|
5639
|
+
values: List[Dict[str, Any]] = []
|
|
5640
|
+
text = None
|
|
5641
|
+
text_key = None
|
|
5642
|
+
for key in keys:
|
|
5643
|
+
rec: Dict[str, Any] = {"property_key": key}
|
|
5644
|
+
try:
|
|
5645
|
+
value = item.GetProperty(key)
|
|
5646
|
+
except Exception as exc:
|
|
5647
|
+
rec["error"] = str(exc)
|
|
5648
|
+
values.append(rec)
|
|
5649
|
+
continue
|
|
5650
|
+
rec["value"] = _ser(value)
|
|
5651
|
+
values.append(rec)
|
|
5652
|
+
if text is None and isinstance(value, str) and value.strip():
|
|
5653
|
+
text = value
|
|
5654
|
+
text_key = key
|
|
5655
|
+
source = "property" if text is not None else None
|
|
5656
|
+
if text is None:
|
|
5657
|
+
# SetProperty/GetProperty title keys are not exposed on every build
|
|
5658
|
+
# (absent for Text+ on Studio 19.1.3, where set_title_text also
|
|
5659
|
+
# fails). The Fusion comp carries the same text as the TextPlus
|
|
5660
|
+
# tool's StyledText input, which reads back fine there — so fall
|
|
5661
|
+
# through to the comp when the property route finds nothing.
|
|
5662
|
+
try:
|
|
5663
|
+
if int(item.GetFusionCompCount() or 0) > 0:
|
|
5664
|
+
comp = item.GetFusionCompByIndex(1)
|
|
5665
|
+
tools = comp.GetToolList(False, "TextPlus") if comp else None
|
|
5666
|
+
for key in (tools or {}):
|
|
5667
|
+
value = tools[key].GetInput("StyledText")
|
|
5668
|
+
if isinstance(value, str) and value.strip():
|
|
5669
|
+
text = value
|
|
5670
|
+
text_key = "StyledText"
|
|
5671
|
+
source = "fusion_comp"
|
|
5672
|
+
break
|
|
5673
|
+
except Exception as exc:
|
|
5674
|
+
values.append({"fusion_comp_error": str(exc)})
|
|
5675
|
+
return {
|
|
5676
|
+
"success": text is not None,
|
|
5677
|
+
"timeline_item_id": _safe_timeline_item_id(item),
|
|
5678
|
+
"text": text,
|
|
5679
|
+
"property_key": text_key,
|
|
5680
|
+
"source": source,
|
|
5681
|
+
"values": values,
|
|
5682
|
+
}
|
|
5683
|
+
|
|
5684
|
+
|
|
5615
5685
|
def _timeline_set_title_text(tl, p: Dict[str, Any]) -> Dict[str, Any]:
|
|
5616
5686
|
item, err = _timeline_resolve_item_optional(tl, p)
|
|
5617
5687
|
if err:
|
|
@@ -8634,6 +8704,7 @@ _MEDIA_POOL_KERNEL_ACTIONS = [
|
|
|
8634
8704
|
"link_proxy_checked",
|
|
8635
8705
|
"link_full_resolution_checked",
|
|
8636
8706
|
"set_clip_marks",
|
|
8707
|
+
"get_clip_marks",
|
|
8637
8708
|
"clear_clip_marks",
|
|
8638
8709
|
"copy_clip_annotations",
|
|
8639
8710
|
"media_pool_boundary_report",
|
|
@@ -12843,6 +12914,41 @@ def _clip_media_signature(clip):
|
|
|
12843
12914
|
return signature
|
|
12844
12915
|
|
|
12845
12916
|
|
|
12917
|
+
def _ffprobe_media_summary(path: str) -> Optional[Dict[str, Any]]:
|
|
12918
|
+
"""Small duration/stream summary of a rendered file; None when ffprobe is unusable."""
|
|
12919
|
+
ffprobe = shutil.which("ffprobe")
|
|
12920
|
+
if not ffprobe:
|
|
12921
|
+
return None
|
|
12922
|
+
try:
|
|
12923
|
+
proc = subprocess.run(
|
|
12924
|
+
[ffprobe, "-v", "error", "-show_entries",
|
|
12925
|
+
"format=duration,size:stream=codec_type,codec_name",
|
|
12926
|
+
"-of", "json", path],
|
|
12927
|
+
capture_output=True, encoding="utf-8", errors="replace",
|
|
12928
|
+
timeout=20, stdin=subprocess.DEVNULL,
|
|
12929
|
+
)
|
|
12930
|
+
except Exception:
|
|
12931
|
+
return None
|
|
12932
|
+
if proc.returncode != 0:
|
|
12933
|
+
return {"error": (proc.stderr or "ffprobe failed").strip()[:300]}
|
|
12934
|
+
try:
|
|
12935
|
+
payload = json.loads(proc.stdout or "{}")
|
|
12936
|
+
except ValueError:
|
|
12937
|
+
return None
|
|
12938
|
+
fmt = payload.get("format") or {}
|
|
12939
|
+
summary: Dict[str, Any] = {
|
|
12940
|
+
"streams": [
|
|
12941
|
+
{"codec_type": st.get("codec_type"), "codec_name": st.get("codec_name")}
|
|
12942
|
+
for st in payload.get("streams") or []
|
|
12943
|
+
],
|
|
12944
|
+
}
|
|
12945
|
+
try:
|
|
12946
|
+
summary["duration_seconds"] = float(fmt.get("duration"))
|
|
12947
|
+
except (TypeError, ValueError):
|
|
12948
|
+
summary["duration_seconds"] = None
|
|
12949
|
+
return summary
|
|
12950
|
+
|
|
12951
|
+
|
|
12846
12952
|
def _probe_media_file(path: str):
|
|
12847
12953
|
ffprobe = shutil.which("ffprobe")
|
|
12848
12954
|
if not ffprobe:
|
|
@@ -13371,6 +13477,23 @@ def _set_clip_marks(root, mp, p: Dict[str, Any]):
|
|
|
13371
13477
|
return {"success": all(row.get("success") for row in results), "count": len(results), "missing": missing, "results": results}
|
|
13372
13478
|
|
|
13373
13479
|
|
|
13480
|
+
def _get_clip_marks(root, mp, p: Dict[str, Any]):
|
|
13481
|
+
"""Read mark in/out for a set of media-pool clips — the read twin of set_clip_marks."""
|
|
13482
|
+
resolved, err = _clips_from_params(root, mp, p)
|
|
13483
|
+
if err:
|
|
13484
|
+
return err
|
|
13485
|
+
clips, missing = resolved
|
|
13486
|
+
results = []
|
|
13487
|
+
for clip in clips:
|
|
13488
|
+
clip_id = _safe_media_pool_item_id(clip)
|
|
13489
|
+
gate = _requires_method(clip, "GetMarkInOut", "19.1")
|
|
13490
|
+
if gate:
|
|
13491
|
+
return gate
|
|
13492
|
+
marks = clip.GetMarkInOut() or {}
|
|
13493
|
+
results.append({"clip_id": clip_id, "name": clip.GetName(), "marks": _ser(marks)})
|
|
13494
|
+
return {"success": True, "count": len(results), "missing": missing, "results": results}
|
|
13495
|
+
|
|
13496
|
+
|
|
13374
13497
|
def _clear_clip_marks(root, mp, p: Dict[str, Any]):
|
|
13375
13498
|
resolved, err = _clips_from_params(root, mp, p)
|
|
13376
13499
|
if err:
|
|
@@ -18457,6 +18580,11 @@ def render(action: str, params: Optional[Dict[str, Any]] = None) -> Dict[str, An
|
|
|
18457
18580
|
delete_all_jobs() -> {success}
|
|
18458
18581
|
list_jobs() -> {jobs}
|
|
18459
18582
|
get_job_status(job_id) -> {status}
|
|
18583
|
+
verify_output(job_id) -> {status, output_path, output_exists, output_size_bytes, output_probe, expected_duration_seconds, duration_ratio, warnings, verified}
|
|
18584
|
+
JobStatus reports Complete even when the render produced a near-empty
|
|
18585
|
+
stub (content before the timeline start, issue #164) — this checks the
|
|
18586
|
+
actual output file against the job's mark range. Verify BEFORE deleting
|
|
18587
|
+
the job; deleted jobs carry no TargetDir to check.
|
|
18460
18588
|
start(job_ids?, interactive?) -> {success}
|
|
18461
18589
|
stop() -> {success}
|
|
18462
18590
|
is_rendering() -> {rendering}
|
|
@@ -18521,6 +18649,70 @@ def render(action: str, params: Optional[Dict[str, Any]] = None) -> Dict[str, An
|
|
|
18521
18649
|
return {"jobs": _ser(proj.GetRenderJobList())}
|
|
18522
18650
|
elif action == "get_job_status":
|
|
18523
18651
|
return _ser(proj.GetRenderJobStatus(p["job_id"]))
|
|
18652
|
+
elif action == "verify_output":
|
|
18653
|
+
# JobStatus lies by omission: a job whose content renders as nothing
|
|
18654
|
+
# (e.g. clips placed before the timeline start, issue #164) still
|
|
18655
|
+
# reports Complete at 100% with a stub output file. Verify the file.
|
|
18656
|
+
job_id = p.get("job_id")
|
|
18657
|
+
if not job_id:
|
|
18658
|
+
return _err("verify_output requires job_id")
|
|
18659
|
+
status = _ser(proj.GetRenderJobStatus(job_id)) or {}
|
|
18660
|
+
jobs = _ser(proj.GetRenderJobList()) or []
|
|
18661
|
+
job = next((j for j in jobs if j.get("JobId") == job_id), None)
|
|
18662
|
+
if job is None:
|
|
18663
|
+
return _err(
|
|
18664
|
+
f"Render job {job_id!r} is not in the render queue "
|
|
18665
|
+
"(deleted jobs cannot be verified — verify before deleting)",
|
|
18666
|
+
code="JOB_NOT_FOUND", category="invalid_input",
|
|
18667
|
+
)
|
|
18668
|
+
result: Dict[str, Any] = {"job_id": job_id, "status": status}
|
|
18669
|
+
target_dir = job.get("TargetDir")
|
|
18670
|
+
filename = job.get("OutputFilename")
|
|
18671
|
+
warnings: List[str] = []
|
|
18672
|
+
output_path = None
|
|
18673
|
+
if target_dir and filename:
|
|
18674
|
+
output_path = os.path.join(target_dir, filename)
|
|
18675
|
+
else:
|
|
18676
|
+
warnings.append("Job carries no TargetDir/OutputFilename to verify against.")
|
|
18677
|
+
result["output_path"] = output_path
|
|
18678
|
+
if output_path:
|
|
18679
|
+
exists = os.path.exists(output_path)
|
|
18680
|
+
result["output_exists"] = exists
|
|
18681
|
+
if exists:
|
|
18682
|
+
result["output_size_bytes"] = os.path.getsize(output_path)
|
|
18683
|
+
probe = _ffprobe_media_summary(output_path)
|
|
18684
|
+
if probe:
|
|
18685
|
+
result["output_probe"] = probe
|
|
18686
|
+
duration = probe.get("duration_seconds")
|
|
18687
|
+
# Expected duration from the job's own mark range and rate.
|
|
18688
|
+
try:
|
|
18689
|
+
frames = int(job.get("MarkOut")) - int(job.get("MarkIn")) + 1
|
|
18690
|
+
fps = float(str(job.get("FrameRate")))
|
|
18691
|
+
expected = frames / fps if fps > 0 else None
|
|
18692
|
+
except (TypeError, ValueError):
|
|
18693
|
+
expected = None
|
|
18694
|
+
result["expected_duration_seconds"] = expected
|
|
18695
|
+
if duration is not None and expected and expected > 0:
|
|
18696
|
+
result["duration_ratio"] = round(duration / expected, 4)
|
|
18697
|
+
if duration < expected * 0.5:
|
|
18698
|
+
warnings.append(
|
|
18699
|
+
f"Output duration {duration:.2f}s is under half the job's "
|
|
18700
|
+
f"mark range ({expected:.2f}s). A Complete status with a "
|
|
18701
|
+
"near-empty file is the signature of content the render "
|
|
18702
|
+
"engine never visited — e.g. clips placed before the "
|
|
18703
|
+
"timeline start (recordFrame counted from absolute zero, "
|
|
18704
|
+
"issue #164)."
|
|
18705
|
+
)
|
|
18706
|
+
else:
|
|
18707
|
+
if status.get("JobStatus") == "Complete":
|
|
18708
|
+
warnings.append(
|
|
18709
|
+
"JobStatus is Complete but the output file does not exist."
|
|
18710
|
+
)
|
|
18711
|
+
result["warnings"] = warnings
|
|
18712
|
+
result["verified"] = bool(
|
|
18713
|
+
output_path and result.get("output_exists") and not warnings
|
|
18714
|
+
)
|
|
18715
|
+
return result
|
|
18524
18716
|
elif action == "start":
|
|
18525
18717
|
job_ids = p.get("job_ids")
|
|
18526
18718
|
interactive = p.get("interactive", False)
|
|
@@ -18645,7 +18837,7 @@ def render(action: str, params: Optional[Dict[str, Any]] = None) -> Dict[str, An
|
|
|
18645
18837
|
return _safe_quick_export(proj, p)
|
|
18646
18838
|
elif action == "export_render_boundary_report":
|
|
18647
18839
|
return _export_render_boundary_report(proj, p)
|
|
18648
|
-
return _unknown(action, ["add_job","delete_job","delete_all_jobs","list_jobs","get_job_status","start","stop","is_rendering","get_formats","get_codecs","get_format_and_codec","set_format_and_codec","get_mode","set_mode","get_resolutions","get_settings","set_settings","list_presets","load_preset","save_preset","delete_preset","quick_export_presets","quick_export",*_RENDER_KERNEL_ACTIONS])
|
|
18840
|
+
return _unknown(action, ["add_job","delete_job","delete_all_jobs","list_jobs","get_job_status","verify_output","start","stop","is_rendering","get_formats","get_codecs","get_format_and_codec","set_format_and_codec","get_mode","set_mode","get_resolutions","get_settings","set_settings","list_presets","load_preset","save_preset","delete_preset","quick_export_presets","quick_export",*_RENDER_KERNEL_ACTIONS])
|
|
18649
18841
|
|
|
18650
18842
|
|
|
18651
18843
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
@@ -19185,6 +19377,8 @@ def media_pool(action: str, params: Optional[Dict[str, Any]] = None) -> Dict[str
|
|
|
19185
19377
|
return _link_full_resolution_checked(root, p)
|
|
19186
19378
|
elif action == "set_clip_marks":
|
|
19187
19379
|
return _set_clip_marks(root, mp, p)
|
|
19380
|
+
elif action == "get_clip_marks":
|
|
19381
|
+
return _get_clip_marks(root, mp, p)
|
|
19188
19382
|
elif action == "clear_clip_marks":
|
|
19189
19383
|
return _clear_clip_marks(root, mp, p)
|
|
19190
19384
|
elif action == "copy_clip_annotations":
|
|
@@ -19854,6 +20048,8 @@ def media_pool_item_markers(action: str, params: Optional[Dict[str, Any]] = None
|
|
|
19854
20048
|
return {"flags": clip.GetFlagList()}
|
|
19855
20049
|
elif action == "clear_flags":
|
|
19856
20050
|
return {"success": bool(clip.ClearFlags(p["color"]))}
|
|
20051
|
+
elif action == "get_name":
|
|
20052
|
+
return {"name": clip.GetName()}
|
|
19857
20053
|
elif action == "set_name":
|
|
19858
20054
|
missing = _requires_method(clip, "SetName", "20.2")
|
|
19859
20055
|
if missing:
|
|
@@ -19880,7 +20076,7 @@ def media_pool_item_markers(action: str, params: Optional[Dict[str, Any]] = None
|
|
|
19880
20076
|
if not replacement_path:
|
|
19881
20077
|
return _err("Provide path or file_path")
|
|
19882
20078
|
return {"success": bool(clip.ReplaceClipPreserveSubClip(replacement_path))}
|
|
19883
|
-
return _unknown(action, ["add","get_all","get_by_custom_data","update_custom_data","get_custom_data","delete_by_color","delete_at_frame","delete_by_custom_data","add_flag","get_flags","clear_flags","set_name","link_full_resolution_media","monitor_growing_file","replace_clip_preserve_sub_clip"])
|
|
20079
|
+
return _unknown(action, ["add","get_all","get_by_custom_data","update_custom_data","get_custom_data","delete_by_color","delete_at_frame","delete_by_custom_data","add_flag","get_flags","clear_flags","get_name","set_name","link_full_resolution_media","monitor_growing_file","replace_clip_preserve_sub_clip"])
|
|
19884
20080
|
|
|
19885
20081
|
|
|
19886
20082
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
@@ -22924,7 +23120,8 @@ _TIMELINE_ACTIONS = [
|
|
|
22924
23120
|
"overwrite_range", "lift_range", "story_spine_report", "create_variant_from_ranges",
|
|
22925
23121
|
"bulk_set_item_properties", "apply_look_to_items", "thumbnail_contact_sheet",
|
|
22926
23122
|
"marker_thumbnail_review", "edit_kernel_capabilities", "probe_edit_kernel_item",
|
|
22927
|
-
"title_property_scan", "set_title_text", "
|
|
23123
|
+
"title_property_scan", "set_title_text", "get_title_text", "get_clips_linked",
|
|
23124
|
+
"bulk_set_title_text", "create_compound_clip",
|
|
22928
23125
|
"create_fusion_clip", "import_into_timeline", "export", "get_setting", "set_setting",
|
|
22929
23126
|
"insert_generator", "insert_fusion_generator", "insert_fusion_composition",
|
|
22930
23127
|
"insert_ofx_generator", "insert_title", "insert_fusion_title", "get_unique_id",
|
|
@@ -23418,6 +23615,29 @@ def timeline(action: str, params: Optional[Dict[str, Any]] = None) -> Dict[str,
|
|
|
23418
23615
|
return _timeline_title_property_scan(tl, p)
|
|
23419
23616
|
elif action == "set_title_text":
|
|
23420
23617
|
return _timeline_set_title_text(tl, p)
|
|
23618
|
+
elif action == "get_title_text":
|
|
23619
|
+
return _timeline_get_title_text(tl, p)
|
|
23620
|
+
elif action == "get_clips_linked":
|
|
23621
|
+
ids = p.get("clip_ids") or ([p["clip_id"]] if p.get("clip_id") else None)
|
|
23622
|
+
if not ids:
|
|
23623
|
+
return _err("get_clips_linked requires clip_id or clip_ids")
|
|
23624
|
+
groups = []
|
|
23625
|
+
for cid in ids:
|
|
23626
|
+
it = _find_timeline_item_by_id(tl, cid)
|
|
23627
|
+
if not it:
|
|
23628
|
+
groups.append({"clip_id": cid, "error": "not found"})
|
|
23629
|
+
continue
|
|
23630
|
+
missing = _requires_method(it, "GetLinkedItems", "19.1")
|
|
23631
|
+
if missing:
|
|
23632
|
+
return missing
|
|
23633
|
+
linked = it.GetLinkedItems() or []
|
|
23634
|
+
groups.append({
|
|
23635
|
+
"clip_id": cid,
|
|
23636
|
+
"name": it.GetName(),
|
|
23637
|
+
"linked": bool(linked),
|
|
23638
|
+
"linked_items": [{"name": li.GetName(), "id": li.GetUniqueId()} for li in linked],
|
|
23639
|
+
})
|
|
23640
|
+
return {"groups": groups, "count": len(groups)}
|
|
23421
23641
|
elif action == "bulk_set_title_text":
|
|
23422
23642
|
return _timeline_bulk_set_title_text(tl, p)
|
|
23423
23643
|
elif action == "create_compound_clip":
|
package/src/utils/api_truth.py
CHANGED
|
@@ -2267,6 +2267,90 @@ API_TRUTH: List[Dict[str, Any]] = [
|
|
|
2267
2267
|
"mitigation": ["_append_and_recover_timeline_item duplicate_verified gate",
|
|
2268
2268
|
"_timeline_ripple_insert_impl"],
|
|
2269
2269
|
},
|
|
2270
|
+
{
|
|
2271
|
+
"symbol": "TimelineItem.SetCDL (write-only — no GetCDL anywhere)",
|
|
2272
|
+
"object": "TimelineItem",
|
|
2273
|
+
"signature": "({NodeIndex, Slope, Offset, Power, Saturation}) -> Bool",
|
|
2274
|
+
"reality": "SetCDL writes a node's CDL but no object exposes a read: "
|
|
2275
|
+
"no GetCDL on TimelineItem or Graph in the API reference, "
|
|
2276
|
+
"and dir() on a live Graph confirms (Studio 19.1.3.7). A "
|
|
2277
|
+
"grade applied via SetCDL cannot be read back, diffed, or "
|
|
2278
|
+
"verified through the API.",
|
|
2279
|
+
"recommended": "Track intended CDL values in the caller, or read the "
|
|
2280
|
+
"actual grade by exporting a DRX still and decoding it "
|
|
2281
|
+
"(this repo's drx tool decodes 100% of DRX params — "
|
|
2282
|
+
"slope/offset/power/sat included).",
|
|
2283
|
+
"tags": ["color", "missing-method", "readback"],
|
|
2284
|
+
"submit": "missing",
|
|
2285
|
+
},
|
|
2286
|
+
{
|
|
2287
|
+
"symbol": "Graph.SetNodeEnabled (write-only — no GetNodeEnabled)",
|
|
2288
|
+
"object": "Graph",
|
|
2289
|
+
"signature": "(nodeIndex, bool) -> Bool",
|
|
2290
|
+
"reality": "A node's bypass state can be set but never read: no "
|
|
2291
|
+
"GetNodeEnabled in the API reference, and dir() on a live "
|
|
2292
|
+
"Graph confirms (Studio 19.1.3.7). After a SetNodeEnabled "
|
|
2293
|
+
"the caller cannot verify it took, and the pre-existing "
|
|
2294
|
+
"state of a node someone toggled in the UI is unknowable.",
|
|
2295
|
+
"recommended": "Treat node-enable state as write-only: record what "
|
|
2296
|
+
"you set, and verify visually (rendered-frame compare) "
|
|
2297
|
+
"when the state matters.",
|
|
2298
|
+
"tags": ["color", "missing-method", "readback"],
|
|
2299
|
+
"submit": "missing",
|
|
2300
|
+
},
|
|
2301
|
+
{
|
|
2302
|
+
"symbol": "TimelineItem.SetKeyframeInterpolation (write-only)",
|
|
2303
|
+
"object": "TimelineItem",
|
|
2304
|
+
"signature": "(property, frame, type) -> Bool",
|
|
2305
|
+
"reality": "Interpolation can be written per keyframe but nothing "
|
|
2306
|
+
"returns it: GetKeyframeAtIndex/GetPropertyAtKeyframeIndex "
|
|
2307
|
+
"expose frame and value only (API reference). On Studio "
|
|
2308
|
+
"19.1.3.7 the whole keyframe method family is absent from "
|
|
2309
|
+
"dir() — these methods are 20.x+.",
|
|
2310
|
+
"recommended": "Record interpolation choices in the caller; readback "
|
|
2311
|
+
"is not available at any version.",
|
|
2312
|
+
"tags": ["timeline", "missing-method", "readback", "keyframes"],
|
|
2313
|
+
"submit": "missing",
|
|
2314
|
+
},
|
|
2315
|
+
{
|
|
2316
|
+
"symbol": "Resolve.SetHighPriority (write-only, irreversible per session)",
|
|
2317
|
+
"object": "Resolve",
|
|
2318
|
+
"signature": "() -> Bool",
|
|
2319
|
+
"reality": "Raises the Resolve process priority; there is no getter "
|
|
2320
|
+
"and no way to lower it again through the API (confirmed "
|
|
2321
|
+
"absent from dir() on Studio 19.1.3.7).",
|
|
2322
|
+
"recommended": "Call it only when the user asked for a long render on "
|
|
2323
|
+
"a dedicated machine; state cannot be read back or "
|
|
2324
|
+
"undone without restarting Resolve.",
|
|
2325
|
+
"tags": ["app-control", "missing-method", "readback"],
|
|
2326
|
+
"submit": "missing",
|
|
2327
|
+
},
|
|
2328
|
+
{
|
|
2329
|
+
"symbol": "Project.IsRenderingInProgress (stuck True after deleting the rendering project)",
|
|
2330
|
+
"object": "Project",
|
|
2331
|
+
"signature": "() -> Bool",
|
|
2332
|
+
"reality": "Deleting or closing a project while its render job is "
|
|
2333
|
+
"still running orphans the render and wedges the whole "
|
|
2334
|
+
"render pipeline: the output file stops growing and "
|
|
2335
|
+
"Resolve idles at 0% CPU, IsRenderingInProgress on the "
|
|
2336
|
+
"NEXT current project reports True indefinitely, "
|
|
2337
|
+
"StopRendering does not clear it, NEW render jobs sit at "
|
|
2338
|
+
"0% forever (then StartRendering starts returning False), "
|
|
2339
|
+
"and Resolve.Quit() is refused because the app believes a "
|
|
2340
|
+
"render is running — even project creation can start "
|
|
2341
|
+
"returning None behind the quit-confirm dialog "
|
|
2342
|
+
"(reproduced live on Studio 19.1.3.7, 2026-08-29).",
|
|
2343
|
+
"recommended": "Never close or delete a project while "
|
|
2344
|
+
"IsRenderingInProgress is True — StopRendering first, "
|
|
2345
|
+
"wait for False, then close. Once wedged, only a "
|
|
2346
|
+
"manual quit (confirming the dialog) or force-quit "
|
|
2347
|
+
"clears it; treat a True that persists at 0% CPU with "
|
|
2348
|
+
"a static output file as stuck rather than rendering. "
|
|
2349
|
+
"Poll GetRenderJobStatus for completion instead of "
|
|
2350
|
+
"IsRenderingInProgress, which this failure poisons.",
|
|
2351
|
+
"tags": ["render", "silent-failure", "unreliable-return"],
|
|
2352
|
+
"submit": "bug",
|
|
2353
|
+
},
|
|
2270
2354
|
{
|
|
2271
2355
|
"symbol": "TimelineItem.CreateMagicMask (needs operator clicks)",
|
|
2272
2356
|
"object": "TimelineItem",
|
|
@@ -118,6 +118,23 @@ _EVIDENCE_GATES: List[Dict[str, Any]] = [
|
|
|
118
118
|
"workaround is unavailable.",
|
|
119
119
|
"issue": 128,
|
|
120
120
|
},
|
|
121
|
+
{
|
|
122
|
+
"symbol": "MediaPoolItem.GetMarkInOut",
|
|
123
|
+
"introduced_in": "19.1",
|
|
124
|
+
"source": "measured",
|
|
125
|
+
"note": "Present on Studio 19.1.3.7 (confirmed live 2026-08-29, "
|
|
126
|
+
"set/get round trip). Introduction version not bisected — "
|
|
127
|
+
"19.1 is the highest floor this repo can attest, so older "
|
|
128
|
+
"builds may have it too and the gate errs toward refusing.",
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
"symbol": "TimelineItem.GetLinkedItems",
|
|
132
|
+
"introduced_in": "19.1",
|
|
133
|
+
"source": "measured",
|
|
134
|
+
"note": "Present on Studio 19.1.3.7 (confirmed live 2026-08-29, "
|
|
135
|
+
"returned the audio twin of a video item). Introduction "
|
|
136
|
+
"version not bisected — same caveat as GetMarkInOut.",
|
|
137
|
+
},
|
|
121
138
|
{
|
|
122
139
|
# Named on Project, not Timeline: the shipped README lists it in the
|
|
123
140
|
# Project section and src/server.py calls it on the project handle. The
|