create-video 4.0.370 → 4.0.371
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/esm/index.mjs +22 -1
- package/dist/list-of-remotion-packages.js +1 -0
- package/dist/prompts.js +0 -1
- package/dist/templates.d.ts +1 -1
- package/dist/templates.js +20 -0
- package/package.json +2 -2
package/dist/esm/index.mjs
CHANGED
|
@@ -79,7 +79,8 @@ var listOfRemotionPackages = [
|
|
|
79
79
|
"@remotion/example-videos",
|
|
80
80
|
"@remotion/whisper-web",
|
|
81
81
|
"@remotion/media",
|
|
82
|
-
"@remotion/web-renderer"
|
|
82
|
+
"@remotion/web-renderer",
|
|
83
|
+
"@remotion/design"
|
|
83
84
|
];
|
|
84
85
|
|
|
85
86
|
// src/templates.ts
|
|
@@ -387,6 +388,26 @@ var FEATURED_TEMPLATES = [
|
|
|
387
388
|
templateInMonorepo: "template-music-visualization",
|
|
388
389
|
allowEnableTailwind: true
|
|
389
390
|
},
|
|
391
|
+
{
|
|
392
|
+
homePageLabel: "Prompt to Video",
|
|
393
|
+
shortName: "Prompt to Video",
|
|
394
|
+
org: "remotion-dev",
|
|
395
|
+
repoName: "template-prompt-to-video",
|
|
396
|
+
description: "Create a story with images and voiceover from a prompt",
|
|
397
|
+
longerDescription: "A template that turns prompts into short videos with a script, images and voiceover. Uses OpenAI and ElevenLabs to generate the content.",
|
|
398
|
+
promoVideo: {
|
|
399
|
+
muxId: "FGl01Rw6c5YOjBCTdVhn5wrmVaRWDOjDeT28iY3Sv47w",
|
|
400
|
+
height: 1920,
|
|
401
|
+
width: 1080
|
|
402
|
+
},
|
|
403
|
+
cliId: "prompt-to-video",
|
|
404
|
+
type: "video",
|
|
405
|
+
defaultBranch: "main",
|
|
406
|
+
featuredOnHomePage: null,
|
|
407
|
+
previewURL: null,
|
|
408
|
+
templateInMonorepo: "template-prompt-to-video",
|
|
409
|
+
allowEnableTailwind: true
|
|
410
|
+
},
|
|
390
411
|
{
|
|
391
412
|
homePageLabel: "Skia",
|
|
392
413
|
shortName: "Skia",
|
package/dist/prompts.js
CHANGED
package/dist/templates.d.ts
CHANGED
|
@@ -20,7 +20,7 @@ export type Template = {
|
|
|
20
20
|
repoName: string;
|
|
21
21
|
homePageLabel: string;
|
|
22
22
|
longerDescription: string;
|
|
23
|
-
cliId: 'hello-world' | 'javascript' | 'blank' | 'next' | 'next-tailwind' | 'next-pages-dir' | 'react-router' | 'three' | 'still' | 'tts' | 'google-tts' | 'audiogram' | 'music-visualization' | 'skia' | 'overlay' | 'stargazer' | 'tiktok' | 'code-hike' | 'render-server' | 'recorder'
|
|
23
|
+
cliId: 'hello-world' | 'javascript' | 'blank' | 'next' | 'next-tailwind' | 'next-pages-dir' | 'react-router' | 'three' | 'still' | 'tts' | 'google-tts' | 'audiogram' | 'music-visualization' | 'prompt-to-video' | 'skia' | 'overlay' | 'stargazer' | 'tiktok' | 'code-hike' | 'render-server' | 'recorder';
|
|
24
24
|
defaultBranch: string;
|
|
25
25
|
featuredOnHomePage: string | null;
|
|
26
26
|
previewURL: string | null;
|
package/dist/templates.js
CHANGED
|
@@ -305,6 +305,26 @@ exports.FEATURED_TEMPLATES = [
|
|
|
305
305
|
templateInMonorepo: 'template-music-visualization',
|
|
306
306
|
allowEnableTailwind: true,
|
|
307
307
|
},
|
|
308
|
+
{
|
|
309
|
+
homePageLabel: 'Prompt to Video',
|
|
310
|
+
shortName: 'Prompt to Video',
|
|
311
|
+
org: 'remotion-dev',
|
|
312
|
+
repoName: 'template-prompt-to-video',
|
|
313
|
+
description: 'Create a story with images and voiceover from a prompt',
|
|
314
|
+
longerDescription: 'A template that turns prompts into short videos with a script, images and voiceover. Uses OpenAI and ElevenLabs to generate the content.',
|
|
315
|
+
promoVideo: {
|
|
316
|
+
muxId: 'FGl01Rw6c5YOjBCTdVhn5wrmVaRWDOjDeT28iY3Sv47w',
|
|
317
|
+
height: 1920,
|
|
318
|
+
width: 1080,
|
|
319
|
+
},
|
|
320
|
+
cliId: 'prompt-to-video',
|
|
321
|
+
type: 'video',
|
|
322
|
+
defaultBranch: 'main',
|
|
323
|
+
featuredOnHomePage: null,
|
|
324
|
+
previewURL: null,
|
|
325
|
+
templateInMonorepo: 'template-prompt-to-video',
|
|
326
|
+
allowEnableTailwind: true,
|
|
327
|
+
},
|
|
308
328
|
{
|
|
309
329
|
homePageLabel: 'Skia',
|
|
310
330
|
shortName: 'Skia',
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/create-video"
|
|
4
4
|
},
|
|
5
5
|
"name": "create-video",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.371",
|
|
7
7
|
"description": "Create a new Remotion project",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"bin": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@types/prompts": "^2.0.12",
|
|
30
30
|
"@types/tar": "6.1.1",
|
|
31
31
|
"react": "19.0.0",
|
|
32
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
32
|
+
"@remotion/eslint-config-internal": "4.0.371",
|
|
33
33
|
"eslint": "9.19.0"
|
|
34
34
|
},
|
|
35
35
|
"exports": {
|