@lalalic/markcut 2.2.0 → 2.2.2
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/package.json +3 -2
- package/src/player/pipeline.mjs +1 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lalalic/markcut",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.2",
|
|
4
4
|
"description": "Markdown-to-video engine. Describe scenes in markdown, get a rendered video.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"markcut": "bin/markcut"
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@remotion/cli": "4.0.469",
|
|
39
39
|
"@remotion/media-parser": "4.0.469",
|
|
40
40
|
"@remotion/media-utils": "4.0.469",
|
|
41
|
-
"@remotion/player": "
|
|
41
|
+
"@remotion/player": "4.0.469",
|
|
42
42
|
"@remotion/transitions": "4.0.469",
|
|
43
43
|
"@vis.gl/react-google-maps": "^1.8.3",
|
|
44
44
|
"immer": "^10.1.1",
|
|
@@ -50,6 +50,7 @@
|
|
|
50
50
|
"remark-frontmatter": "^5.0.0",
|
|
51
51
|
"remark-parse": "^11.0.0",
|
|
52
52
|
"remotion": "4.0.469",
|
|
53
|
+
"remotion-subtitle": "^2.0.0",
|
|
53
54
|
"systemjs": "^6.15.1",
|
|
54
55
|
"unified": "^11.0.5",
|
|
55
56
|
"zod": "4.3.6"
|
package/src/player/pipeline.mjs
CHANGED
|
@@ -982,6 +982,7 @@ var DEFAULT_VTT_CLI = process.env.MARKCUT_VTT_CLI || `uvx --from mlx-vlm mlx_vlm
|
|
|
982
982
|
var DEFAULT_STT_CLI = process.env.MARKCUT_STT_CLI || 'uvx --from openai-whisper whisper "{input}" --output_format vtt --output_dir "{output}"';
|
|
983
983
|
var DEFAULT_TTS_CLI = process.env.MARKCUT_TTS_CLI || 'uvx edge-tts --voice "en-US-GuyNeural" --text "{input}" --write-media "{output}"';
|
|
984
984
|
var DEFAULT_AGENT_CLI = process.env.MARKCUT_AGENT_CLI || "npx pi -p {prompt}";
|
|
985
|
+
var DEFAULT_EDIT_CLI = process.env.MARKCUT_EDIT_CLI || "npx pi --session-id {sessionid} --system-prompt {systemprompt} -p {prompt}";
|
|
985
986
|
var DEFAULT_TTI_CLI = process.env.MARKCUT_TTI_CLI || 'uvx --from mflux mflux-generate-flux2 --model flux2-klein-4b --steps 5 --prompt "{input}" --output "{output}"';
|
|
986
987
|
var DEFAULT_TTV_CLI = process.env.MARKCUT_TTV_CLI || "";
|
|
987
988
|
|