create-video 4.0.284 → 4.0.286
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 +20 -0
- package/dist/log.d.ts +4 -4
- package/dist/open-in-editor.js +17 -7
- package/dist/templates.d.ts +1 -1
- package/dist/templates.js +20 -0
- package/package.json +2 -2
package/dist/esm/index.mjs
CHANGED
|
@@ -323,6 +323,26 @@ var FEATURED_TEMPLATES = [
|
|
|
323
323
|
templateInMonorepo: "template-audiogram",
|
|
324
324
|
allowEnableTailwind: true
|
|
325
325
|
},
|
|
326
|
+
{
|
|
327
|
+
homePageLabel: "Music Visualization",
|
|
328
|
+
shortName: "Music Visualization",
|
|
329
|
+
org: "remotion-dev",
|
|
330
|
+
repoName: "template-music-visualization",
|
|
331
|
+
description: "Text and waveform visualization for podcasts",
|
|
332
|
+
longerDescription: "A template that turns music snippets into videos that can be posted on Social Media.",
|
|
333
|
+
promoVideo: {
|
|
334
|
+
muxId: "8msABU02zPeFOGdvUWChssvsLVJZgFNWGWaVKA9hNAlw",
|
|
335
|
+
height: 1080,
|
|
336
|
+
width: 1080
|
|
337
|
+
},
|
|
338
|
+
cliId: "music-visualization",
|
|
339
|
+
type: "video",
|
|
340
|
+
defaultBranch: "main",
|
|
341
|
+
featuredOnHomePage: null,
|
|
342
|
+
previewURL: null,
|
|
343
|
+
templateInMonorepo: "template-music-visualization",
|
|
344
|
+
allowEnableTailwind: true
|
|
345
|
+
},
|
|
326
346
|
{
|
|
327
347
|
homePageLabel: "Skia",
|
|
328
348
|
shortName: "Skia",
|
package/dist/log.d.ts
CHANGED
|
@@ -11,9 +11,9 @@ export declare const Log: {
|
|
|
11
11
|
supportsColor: chalk.ColorSupport | false;
|
|
12
12
|
};
|
|
13
13
|
};
|
|
14
|
-
verbose: (...
|
|
15
|
-
info: (...
|
|
16
|
-
warn: (...
|
|
17
|
-
error: (...
|
|
14
|
+
verbose: (message?: any, ...optionalParams: any[]) => void;
|
|
15
|
+
info: (message?: any, ...optionalParams: any[]) => void;
|
|
16
|
+
warn: (message?: any, ...optionalParams: any[]) => void;
|
|
17
|
+
error: (message?: any, ...optionalParams: any[]) => void;
|
|
18
18
|
newLine: () => void;
|
|
19
19
|
};
|
package/dist/open-in-editor.js
CHANGED
|
@@ -16,13 +16,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
16
16
|
}) : function(o, v) {
|
|
17
17
|
o["default"] = v;
|
|
18
18
|
});
|
|
19
|
-
var __importStar = (this && this.__importStar) || function (
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
};
|
|
19
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
20
|
+
var ownKeys = function(o) {
|
|
21
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
22
|
+
var ar = [];
|
|
23
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
24
|
+
return ar;
|
|
25
|
+
};
|
|
26
|
+
return ownKeys(o);
|
|
27
|
+
};
|
|
28
|
+
return function (mod) {
|
|
29
|
+
if (mod && mod.__esModule) return mod;
|
|
30
|
+
var result = {};
|
|
31
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
32
|
+
__setModuleDefault(result, mod);
|
|
33
|
+
return result;
|
|
34
|
+
};
|
|
35
|
+
})();
|
|
26
36
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
27
37
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
28
38
|
};
|
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' | 'skia' | 'overlay' | 'stargazer' | 'tiktok' | 'code-hike';
|
|
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';
|
|
24
24
|
defaultBranch: string;
|
|
25
25
|
featuredOnHomePage: string | null;
|
|
26
26
|
previewURL: string | null;
|
package/dist/templates.js
CHANGED
|
@@ -245,6 +245,26 @@ exports.FEATURED_TEMPLATES = [
|
|
|
245
245
|
templateInMonorepo: 'template-audiogram',
|
|
246
246
|
allowEnableTailwind: true,
|
|
247
247
|
},
|
|
248
|
+
{
|
|
249
|
+
homePageLabel: 'Music Visualization',
|
|
250
|
+
shortName: 'Music Visualization',
|
|
251
|
+
org: 'remotion-dev',
|
|
252
|
+
repoName: 'template-music-visualization',
|
|
253
|
+
description: 'Text and waveform visualization for podcasts',
|
|
254
|
+
longerDescription: 'A template that turns music snippets into videos that can be posted on Social Media.',
|
|
255
|
+
promoVideo: {
|
|
256
|
+
muxId: '8msABU02zPeFOGdvUWChssvsLVJZgFNWGWaVKA9hNAlw',
|
|
257
|
+
height: 1080,
|
|
258
|
+
width: 1080,
|
|
259
|
+
},
|
|
260
|
+
cliId: 'music-visualization',
|
|
261
|
+
type: 'video',
|
|
262
|
+
defaultBranch: 'main',
|
|
263
|
+
featuredOnHomePage: null,
|
|
264
|
+
previewURL: null,
|
|
265
|
+
templateInMonorepo: 'template-music-visualization',
|
|
266
|
+
allowEnableTailwind: true,
|
|
267
|
+
},
|
|
248
268
|
{
|
|
249
269
|
homePageLabel: 'Skia',
|
|
250
270
|
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.286",
|
|
7
7
|
"description": "Create a new Remotion project",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"bin": {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"@types/tar": "6.1.1",
|
|
28
28
|
"react": "19.0.0",
|
|
29
29
|
"eslint": "9.19.0",
|
|
30
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
30
|
+
"@remotion/eslint-config-internal": "4.0.286"
|
|
31
31
|
},
|
|
32
32
|
"exports": {
|
|
33
33
|
"./package.json": "./package.json",
|