@a-company/atelier 0.28.2 → 0.36.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/dist/chunk-5QQESXI6.js +4432 -0
- package/dist/chunk-5QQESXI6.js.map +1 -0
- package/dist/{chunk-C5DBTHXB.js → chunk-JPZ4F4PW.js} +44 -2
- package/dist/chunk-JPZ4F4PW.js.map +1 -0
- package/dist/cli.cjs +2577 -529
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +405 -433
- package/dist/cli.js.map +1 -1
- package/dist/{dist-6IHF7WA7.js → dist-M67UZGFQ.js} +2 -2
- package/dist/index.cjs +2296 -40
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +584 -2
- package/dist/index.d.ts +584 -2
- package/dist/index.js +112 -4
- package/dist/mcp.cjs +1247 -367
- package/dist/mcp.cjs.map +1 -1
- package/dist/mcp.js +1241 -367
- package/dist/mcp.js.map +1 -1
- package/package.json +15 -9
- package/src/web/inline-app.ts +867 -0
- package/src/web/tsconfig.json +9 -0
- package/templates/welcome.atelier +67 -0
- package/dist/chunk-C5DBTHXB.js.map +0 -1
- package/dist/chunk-LC7ICNMN.js +0 -2242
- package/dist/chunk-LC7ICNMN.js.map +0 -1
- /package/dist/{dist-6IHF7WA7.js.map → dist-M67UZGFQ.js.map} +0 -0
package/dist/index.js
CHANGED
|
@@ -1,38 +1,146 @@
|
|
|
1
1
|
import {
|
|
2
|
+
CanvasUnavailableError,
|
|
3
|
+
RECIPE_VERSION,
|
|
4
|
+
VIDEO_CUTLIST_VERSION,
|
|
5
|
+
VIDEO_PROJECT_VERSION,
|
|
6
|
+
VIDEO_TRANSCRIPT_VERSION,
|
|
7
|
+
applyAdd,
|
|
8
|
+
applyBatchReplace,
|
|
9
|
+
applyHide,
|
|
10
|
+
applyMerge,
|
|
11
|
+
applyRecipeCommand,
|
|
12
|
+
applyRecipeToCaptionOptions,
|
|
13
|
+
applyRecipeToTranscribeOptions,
|
|
14
|
+
applyRecipeToTrimOptions,
|
|
15
|
+
applySplit,
|
|
16
|
+
applyTextEdit,
|
|
2
17
|
assetsCommand,
|
|
18
|
+
buildCaptionLayers,
|
|
3
19
|
buildFfmpegArgs,
|
|
20
|
+
captionsCommand,
|
|
21
|
+
carouselCommand,
|
|
22
|
+
carouselFileName,
|
|
4
23
|
checkFfmpeg,
|
|
24
|
+
composeCarouselFrameDoc,
|
|
25
|
+
createVideoProject,
|
|
26
|
+
effectiveSpan,
|
|
27
|
+
expandInputs,
|
|
28
|
+
exportImageCommand,
|
|
5
29
|
exportLottieCommand,
|
|
6
30
|
exportSvgCommand,
|
|
31
|
+
fitImageToCanvas,
|
|
32
|
+
flattenWords,
|
|
7
33
|
getAssets,
|
|
8
34
|
getInfo,
|
|
9
35
|
getVariables,
|
|
36
|
+
groupIntoPhrases,
|
|
10
37
|
infoCommand,
|
|
38
|
+
loadCanvasModule,
|
|
39
|
+
loadRecipe,
|
|
40
|
+
loadVideoProject,
|
|
41
|
+
mergeTranscriptWithExisting,
|
|
42
|
+
parseWhisperCppJson,
|
|
43
|
+
probeWhisper,
|
|
44
|
+
readComposition,
|
|
45
|
+
readCutList,
|
|
46
|
+
readTranscript,
|
|
47
|
+
recipeCommand,
|
|
48
|
+
recipeToYaml,
|
|
11
49
|
renderCommand,
|
|
12
50
|
renderDocument,
|
|
51
|
+
renderDocumentToPng,
|
|
52
|
+
renderRecipeWithDefaults,
|
|
53
|
+
resolveExportDimensions,
|
|
54
|
+
resolveRecipePath,
|
|
13
55
|
resolveStill,
|
|
56
|
+
rewriteCaptionLayers,
|
|
57
|
+
rewriteCutLayers,
|
|
58
|
+
runWhisperCpp,
|
|
59
|
+
scaffoldRecipeYaml,
|
|
14
60
|
stillCommand,
|
|
61
|
+
transcribeCommand,
|
|
62
|
+
transcribeProject,
|
|
63
|
+
transcriptCommand,
|
|
64
|
+
trimCommand,
|
|
65
|
+
trimProject,
|
|
15
66
|
validateCommand,
|
|
16
67
|
validateFile,
|
|
17
|
-
variablesCommand
|
|
18
|
-
|
|
19
|
-
|
|
68
|
+
variablesCommand,
|
|
69
|
+
writeComposition,
|
|
70
|
+
writeCutList,
|
|
71
|
+
writeTranscript
|
|
72
|
+
} from "./chunk-5QQESXI6.js";
|
|
73
|
+
import "./chunk-JPZ4F4PW.js";
|
|
20
74
|
export {
|
|
75
|
+
CanvasUnavailableError,
|
|
76
|
+
RECIPE_VERSION,
|
|
77
|
+
VIDEO_CUTLIST_VERSION,
|
|
78
|
+
VIDEO_PROJECT_VERSION,
|
|
79
|
+
VIDEO_TRANSCRIPT_VERSION,
|
|
80
|
+
applyAdd,
|
|
81
|
+
applyBatchReplace,
|
|
82
|
+
applyHide,
|
|
83
|
+
applyMerge,
|
|
84
|
+
applyRecipeCommand,
|
|
85
|
+
applyRecipeToCaptionOptions,
|
|
86
|
+
applyRecipeToTranscribeOptions,
|
|
87
|
+
applyRecipeToTrimOptions,
|
|
88
|
+
applySplit,
|
|
89
|
+
applyTextEdit,
|
|
21
90
|
assetsCommand,
|
|
91
|
+
buildCaptionLayers,
|
|
22
92
|
buildFfmpegArgs,
|
|
93
|
+
captionsCommand,
|
|
94
|
+
carouselCommand,
|
|
95
|
+
carouselFileName,
|
|
23
96
|
checkFfmpeg,
|
|
97
|
+
composeCarouselFrameDoc,
|
|
98
|
+
createVideoProject,
|
|
99
|
+
effectiveSpan,
|
|
100
|
+
expandInputs,
|
|
101
|
+
exportImageCommand,
|
|
24
102
|
exportLottieCommand,
|
|
25
103
|
exportSvgCommand,
|
|
104
|
+
fitImageToCanvas,
|
|
105
|
+
flattenWords,
|
|
26
106
|
getAssets,
|
|
27
107
|
getInfo,
|
|
28
108
|
getVariables,
|
|
109
|
+
groupIntoPhrases,
|
|
29
110
|
infoCommand,
|
|
111
|
+
loadCanvasModule,
|
|
112
|
+
loadRecipe,
|
|
113
|
+
loadVideoProject,
|
|
114
|
+
mergeTranscriptWithExisting,
|
|
115
|
+
parseWhisperCppJson,
|
|
116
|
+
probeWhisper,
|
|
117
|
+
readComposition,
|
|
118
|
+
readCutList,
|
|
119
|
+
readTranscript,
|
|
120
|
+
recipeCommand,
|
|
121
|
+
recipeToYaml,
|
|
30
122
|
renderCommand,
|
|
31
123
|
renderDocument,
|
|
124
|
+
renderDocumentToPng,
|
|
125
|
+
renderRecipeWithDefaults,
|
|
126
|
+
resolveExportDimensions,
|
|
127
|
+
resolveRecipePath,
|
|
32
128
|
resolveStill,
|
|
129
|
+
rewriteCaptionLayers,
|
|
130
|
+
rewriteCutLayers,
|
|
131
|
+
runWhisperCpp,
|
|
132
|
+
scaffoldRecipeYaml,
|
|
33
133
|
stillCommand,
|
|
134
|
+
transcribeCommand,
|
|
135
|
+
transcribeProject,
|
|
136
|
+
transcriptCommand,
|
|
137
|
+
trimCommand,
|
|
138
|
+
trimProject,
|
|
34
139
|
validateCommand,
|
|
35
140
|
validateFile,
|
|
36
|
-
variablesCommand
|
|
141
|
+
variablesCommand,
|
|
142
|
+
writeComposition,
|
|
143
|
+
writeCutList,
|
|
144
|
+
writeTranscript
|
|
37
145
|
};
|
|
38
146
|
//# sourceMappingURL=index.js.map
|