davinci-resolve-mcp 2.33.8 → 2.34.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 +14 -0
- package/README.md +1 -1
- package/docs/SKILL.md +2 -0
- package/install.py +1 -1
- package/package.json +1 -1
- package/src/granular/common.py +1 -1
- package/src/server.py +13 -2
- package/src/utils/cut_ir.py +115 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,20 @@
|
|
|
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.34.0
|
|
6
|
+
|
|
7
|
+
First phase of transcript-driven editing: a Cut intermediate representation and a
|
|
8
|
+
mechanical cut proposer.
|
|
9
|
+
|
|
10
|
+
- **Added** `src/utils/cut_ir.py` — the Cut-IR: a typed representation of an
|
|
11
|
+
editorial cut ({kind, span, action, confidence, rationale, evidence}) plus a
|
|
12
|
+
deterministic Pass-1 detector that flags filler words, long pauses, and
|
|
13
|
+
repeated lines from a timestamped transcript. No LLM.
|
|
14
|
+
- **Added** `timeline(action="propose_cuts", cues?, long_pause_frames?)` — a
|
|
15
|
+
DRY-RUN that runs Pass-1 over the timeline's subtitle transcript (or provided
|
|
16
|
+
cues) and returns a CutList. It proposes only; it applies nothing. The semantic
|
|
17
|
+
Pass-2 and the governed timeline executor are subsequent phases.
|
|
18
|
+
|
|
5
19
|
## What's New in v2.33.8
|
|
6
20
|
|
|
7
21
|
Bridge-call performance instrumentation.
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# DaVinci Resolve MCP Server
|
|
2
2
|
|
|
3
|
-
[](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
|
|
4
4
|
[](https://www.npmjs.com/package/davinci-resolve-mcp)
|
|
5
5
|
[](docs/reference/api-coverage.md)
|
|
6
6
|
[-blue.svg)](#server-modes)
|
package/docs/SKILL.md
CHANGED
|
@@ -729,6 +729,8 @@ Key actions:
|
|
|
729
729
|
- `get_track_count(track_type)` — track_type: `"video"`, `"audio"`, `"subtitle"`
|
|
730
730
|
- `get_transcript(with_timecodes?)` — read the subtitle track(s) as transcript
|
|
731
731
|
text `{text, cue_count, has_subtitles, cues}`
|
|
732
|
+
- `propose_cuts(cues?, long_pause_frames?)` — DRY-RUN: mechanically detect
|
|
733
|
+
candidate cuts (fillers, long pauses, repeats) from the transcript; proposes only
|
|
732
734
|
- `add_track(track_type, sub_type?)` / `delete_track(track_type, index)`
|
|
733
735
|
- `get_items(track_type, index)` — items on a track
|
|
734
736
|
- `clip_where(track_type?, track_index?, name_contains?, duration_lt?, duration_gt?)` —
|
package/install.py
CHANGED
|
@@ -35,7 +35,7 @@ from src.utils.update_check import (
|
|
|
35
35
|
|
|
36
36
|
# ─── Version ──────────────────────────────────────────────────────────────────
|
|
37
37
|
|
|
38
|
-
VERSION = "2.
|
|
38
|
+
VERSION = "2.34.0"
|
|
39
39
|
# Only hard floor: mcp[cli] requires Python 3.10+. There is no upper bound —
|
|
40
40
|
# Resolve's scripting bridge loads into newer interpreters on recent builds
|
|
41
41
|
# (Python 3.14 verified against Resolve Studio 20.3.2). Older Resolve builds
|
package/package.json
CHANGED
package/src/granular/common.py
CHANGED
|
@@ -80,7 +80,7 @@ if not logging.getLogger().handlers:
|
|
|
80
80
|
handlers=[logging.StreamHandler()],
|
|
81
81
|
)
|
|
82
82
|
|
|
83
|
-
VERSION = "2.
|
|
83
|
+
VERSION = "2.34.0"
|
|
84
84
|
logger = logging.getLogger("davinci-resolve-mcp")
|
|
85
85
|
logger.info(f"Starting DaVinci Resolve MCP Server v{VERSION}")
|
|
86
86
|
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 341-tool granular server instead
|
|
12
12
|
"""
|
|
13
13
|
|
|
14
|
-
VERSION = "2.
|
|
14
|
+
VERSION = "2.34.0"
|
|
15
15
|
|
|
16
16
|
import base64
|
|
17
17
|
import os
|
|
@@ -45,6 +45,7 @@ from src.utils.cdl import normalize_cdl_payload
|
|
|
45
45
|
from src.utils.mcp_stdio import run_fastmcp_stdio
|
|
46
46
|
from src.utils.api_truth import lookup_api_truth, VERIFIED_ON as _API_TRUTH_VERIFIED_ON
|
|
47
47
|
from src.utils.contracts import validate as _validate_params
|
|
48
|
+
from src.utils.cut_ir import build_cut_list as _build_cut_list
|
|
48
49
|
from src.utils.proc import safe_run
|
|
49
50
|
from src.utils.readback import verify_by_readback
|
|
50
51
|
from src.utils.update_check import (
|
|
@@ -15202,6 +15203,9 @@ def timeline(action: str, params: Optional[Dict[str, Any]] = None) -> Dict[str,
|
|
|
15202
15203
|
get_media_pool_item() -> {name, id}
|
|
15203
15204
|
get_transcript(with_timecodes?) -> {text, cue_count, has_subtitles, cues}
|
|
15204
15205
|
Read the timeline's subtitle track(s) as transcript text.
|
|
15206
|
+
propose_cuts(cues?, long_pause_frames?) -> {cuts, cut_count, basis_cue_count, pass, note}
|
|
15207
|
+
DRY-RUN. Mechanically detect candidate cuts (filler words, long pauses,
|
|
15208
|
+
repeated lines) from the subtitle transcript. Proposes only; applies nothing.
|
|
15205
15209
|
get_mark_in_out() -> {mark}
|
|
15206
15210
|
set_mark_in_out(mark_in, mark_out, type?) -> {success}
|
|
15207
15211
|
clear_mark_in_out(type?) -> {success}
|
|
@@ -15489,6 +15493,13 @@ def timeline(action: str, params: Optional[Dict[str, Any]] = None) -> Dict[str,
|
|
|
15489
15493
|
return {"name": mpi.GetName(), "id": mpi.GetUniqueId()} if mpi else {"name": None, "id": None}
|
|
15490
15494
|
elif action == "get_transcript":
|
|
15491
15495
|
return _timeline_transcript(tl, with_timecodes=bool(p.get("with_timecodes")))
|
|
15496
|
+
elif action == "propose_cuts":
|
|
15497
|
+
# Dry-run only: detect mechanical cuts (fillers, long pauses, repeats)
|
|
15498
|
+
# from the timeline's subtitle transcript. Proposes; never edits.
|
|
15499
|
+
cues = p.get("cues")
|
|
15500
|
+
if cues is None:
|
|
15501
|
+
cues = _timeline_transcript(tl, with_timecodes=True)["cues"]
|
|
15502
|
+
return _build_cut_list(cues, long_pause_frames=int(p.get("long_pause_frames", 48)))
|
|
15492
15503
|
elif action == "get_mark_in_out":
|
|
15493
15504
|
return _ser(tl.GetMarkInOut())
|
|
15494
15505
|
elif action == "set_mark_in_out":
|
|
@@ -15698,7 +15709,7 @@ def timeline(action: str, params: Optional[Dict[str, Any]] = None) -> Dict[str,
|
|
|
15698
15709
|
if mp_err:
|
|
15699
15710
|
return mp_err
|
|
15700
15711
|
return _fairlight_boundary_report(proj, mp, tl, p)
|
|
15701
|
-
return _unknown(action, ["list","get_current","set_current","get_name","set_name","get_start_frame","get_end_frame","get_start_timecode","set_start_timecode","get_track_count","add_track","delete_track","get_track_sub_type","set_track_enable","get_track_enabled","set_track_lock","get_track_locked","get_track_name","set_track_name","get_items","delete_clips","set_clips_linked","duplicate","duplicate_clips","copy_clips","move_clips","copy_range","duplicate_range","overwrite_range","lift_range","story_spine_report","create_variant_from_ranges","bulk_set_item_properties","apply_look_to_items","thumbnail_contact_sheet","marker_thumbnail_review","edit_kernel_capabilities","probe_edit_kernel_item","title_property_scan","set_title_text","bulk_set_title_text","create_compound_clip","create_fusion_clip","import_into_timeline","export","get_setting","set_setting","insert_generator","insert_fusion_generator","insert_fusion_composition","insert_ofx_generator","insert_title","insert_fusion_title","get_unique_id","get_node_graph","get_media_pool_item","get_transcript","get_mark_in_out","set_mark_in_out","clear_mark_in_out","convert_to_stereo","get_items_in_track","get_voice_isolation_state","set_voice_isolation_state","extract_source_frame_ranges","audio_mix_capability_report",*_TIMELINE_CONFORM_KERNEL_ACTIONS,*_TIMELINE_AUDIO_KERNEL_ACTIONS])
|
|
15712
|
+
return _unknown(action, ["list","get_current","set_current","get_name","set_name","get_start_frame","get_end_frame","get_start_timecode","set_start_timecode","get_track_count","add_track","delete_track","get_track_sub_type","set_track_enable","get_track_enabled","set_track_lock","get_track_locked","get_track_name","set_track_name","get_items","delete_clips","set_clips_linked","duplicate","duplicate_clips","copy_clips","move_clips","copy_range","duplicate_range","overwrite_range","lift_range","story_spine_report","create_variant_from_ranges","bulk_set_item_properties","apply_look_to_items","thumbnail_contact_sheet","marker_thumbnail_review","edit_kernel_capabilities","probe_edit_kernel_item","title_property_scan","set_title_text","bulk_set_title_text","create_compound_clip","create_fusion_clip","import_into_timeline","export","get_setting","set_setting","insert_generator","insert_fusion_generator","insert_fusion_composition","insert_ofx_generator","insert_title","insert_fusion_title","get_unique_id","get_node_graph","get_media_pool_item","get_transcript","propose_cuts","get_mark_in_out","set_mark_in_out","clear_mark_in_out","convert_to_stereo","get_items_in_track","get_voice_isolation_state","set_voice_isolation_state","extract_source_frame_ranges","audio_mix_capability_report",*_TIMELINE_CONFORM_KERNEL_ACTIONS,*_TIMELINE_AUDIO_KERNEL_ACTIONS])
|
|
15702
15713
|
|
|
15703
15714
|
|
|
15704
15715
|
# ═══════════════════════════════════════════════════════════════════════════════
|
|
@@ -0,0 +1,115 @@
|
|
|
1
|
+
"""Cut intermediate representation (Cut-IR) and the mechanical (Pass-1) detector.
|
|
2
|
+
|
|
3
|
+
The Cut-IR is the typed contract between a timestamped transcript and concrete,
|
|
4
|
+
governed timeline operations. Producers emit Cuts; an executor (a later phase)
|
|
5
|
+
consumes them as governed, versioned edits; a review UI shows them. This module
|
|
6
|
+
provides the schema plus the deterministic Pass-1 detector — filler words, long
|
|
7
|
+
pauses, and repeated lines — with no LLM. The semantic Pass-2 and the timeline
|
|
8
|
+
executor are separate phases (see local/design/research/r1-cut-ir.md).
|
|
9
|
+
|
|
10
|
+
A Cut:
|
|
11
|
+
{
|
|
12
|
+
"kind": "filler" | "long_pause" | "stammer" | "false_start" | "semantic",
|
|
13
|
+
"span": {"start": <frame>, "end": <frame>},
|
|
14
|
+
"action": "lift" | "ripple_delete" | "keep" | "reorder" | "swap",
|
|
15
|
+
"confidence": 0.0..1.0,
|
|
16
|
+
"rationale": str,
|
|
17
|
+
"evidence": {...},
|
|
18
|
+
}
|
|
19
|
+
"""
|
|
20
|
+
from typing import Any, Dict, List, Optional
|
|
21
|
+
|
|
22
|
+
# Common English fillers (single tokens and short phrases).
|
|
23
|
+
FILLER_WORDS = {
|
|
24
|
+
"um", "uh", "er", "ah", "eh", "hmm", "mm", "uhh", "umm",
|
|
25
|
+
"like", "so", "well", "right", "okay", "ok",
|
|
26
|
+
}
|
|
27
|
+
FILLER_PHRASES = {"you know", "i mean", "sort of", "kind of", "you see"}
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def make_cut(
|
|
31
|
+
kind: str,
|
|
32
|
+
start: Optional[int],
|
|
33
|
+
end: Optional[int],
|
|
34
|
+
action: str,
|
|
35
|
+
confidence: float,
|
|
36
|
+
rationale: str,
|
|
37
|
+
evidence: Optional[Dict[str, Any]] = None,
|
|
38
|
+
) -> Dict[str, Any]:
|
|
39
|
+
return {
|
|
40
|
+
"kind": kind,
|
|
41
|
+
"span": {"start": start, "end": end},
|
|
42
|
+
"action": action,
|
|
43
|
+
"confidence": round(float(confidence), 2),
|
|
44
|
+
"rationale": rationale,
|
|
45
|
+
"evidence": evidence or {},
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
def _norm(text: str) -> str:
|
|
50
|
+
return (text or "").strip().lower().strip(".,!?;:")
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
def _is_filler_only(text: str) -> bool:
|
|
54
|
+
low = _norm(text)
|
|
55
|
+
if not low:
|
|
56
|
+
return False
|
|
57
|
+
if low in FILLER_PHRASES:
|
|
58
|
+
return True
|
|
59
|
+
tokens = [t.strip(".,!?;:") for t in low.split()]
|
|
60
|
+
tokens = [t for t in tokens if t]
|
|
61
|
+
return bool(tokens) and all(t in FILLER_WORDS for t in tokens)
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
def detect_cuts_pass1(
|
|
65
|
+
cues: List[Dict[str, Any]],
|
|
66
|
+
*,
|
|
67
|
+
long_pause_frames: int = 48,
|
|
68
|
+
) -> List[Dict[str, Any]]:
|
|
69
|
+
"""Mechanical Pass-1 detection over timestamped cues.
|
|
70
|
+
|
|
71
|
+
cues: list of {"text", "start", "end"} in frames. Returns a list of Cuts.
|
|
72
|
+
"""
|
|
73
|
+
cuts: List[Dict[str, Any]] = []
|
|
74
|
+
for i, cue in enumerate(cues):
|
|
75
|
+
text = (cue.get("text") or "").strip()
|
|
76
|
+
start, end = cue.get("start"), cue.get("end")
|
|
77
|
+
|
|
78
|
+
if _is_filler_only(text):
|
|
79
|
+
cuts.append(make_cut(
|
|
80
|
+
"filler", start, end, "lift", 0.8,
|
|
81
|
+
f"Filler-only cue: {text!r}", {"text": text},
|
|
82
|
+
))
|
|
83
|
+
|
|
84
|
+
if i > 0:
|
|
85
|
+
prev_text = (cues[i - 1].get("text") or "").strip()
|
|
86
|
+
if _norm(prev_text) and _norm(text) == _norm(prev_text):
|
|
87
|
+
cuts.append(make_cut(
|
|
88
|
+
"stammer", start, end, "lift", 0.6,
|
|
89
|
+
f"Repeated line: {text!r}", {"text": text},
|
|
90
|
+
))
|
|
91
|
+
prev_end = cues[i - 1].get("end")
|
|
92
|
+
if (prev_end is not None and start is not None
|
|
93
|
+
and start - prev_end > long_pause_frames):
|
|
94
|
+
cuts.append(make_cut(
|
|
95
|
+
"long_pause", prev_end, start, "lift", 0.5,
|
|
96
|
+
f"Pause of {start - prev_end} frames before {text!r}",
|
|
97
|
+
{"frames": start - prev_end},
|
|
98
|
+
))
|
|
99
|
+
return cuts
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
def build_cut_list(
|
|
103
|
+
cues: List[Dict[str, Any]],
|
|
104
|
+
*,
|
|
105
|
+
long_pause_frames: int = 48,
|
|
106
|
+
) -> Dict[str, Any]:
|
|
107
|
+
"""Run Pass-1 and wrap the result as a (dry-run) CutList."""
|
|
108
|
+
cuts = detect_cuts_pass1(cues, long_pause_frames=long_pause_frames)
|
|
109
|
+
return {
|
|
110
|
+
"cuts": cuts,
|
|
111
|
+
"cut_count": len(cuts),
|
|
112
|
+
"basis_cue_count": len(cues),
|
|
113
|
+
"pass": "mechanical",
|
|
114
|
+
"note": "Dry-run proposal. Review before applying; no edits were made.",
|
|
115
|
+
}
|