@remotion/renderer 2.6.5 → 2.6.6
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/assets/download-and-map-assets-to-file.d.ts.map +1 -1
- package/dist/assets/download-and-map-assets-to-file.js +2 -13
- package/dist/assets/download-and-map-assets-to-file.js.map +1 -1
- package/dist/assets/download-file.d.ts +2 -0
- package/dist/assets/download-file.d.ts.map +1 -0
- package/dist/assets/download-file.js +27 -0
- package/dist/assets/download-file.js.map +1 -0
- package/dist/get-pro-res-profile-name.d.ts +3 -0
- package/dist/get-pro-res-profile-name.d.ts.map +1 -0
- package/dist/get-pro-res-profile-name.js +26 -0
- package/dist/get-pro-res-profile-name.js.map +1 -0
- package/dist/render-video.d.ts +8 -7
- package/dist/render-video.d.ts.map +1 -1
- package/dist/render-video.js +24 -55
- package/dist/render-video.js.map +1 -1
- package/dist/run-ffmpeg-command.d.ts +6 -0
- package/dist/run-ffmpeg-command.d.ts.map +1 -0
- package/dist/run-ffmpeg-command.js +25 -0
- package/dist/run-ffmpeg-command.js.map +1 -0
- package/dist/stitcher.d.ts +2 -2
- package/package.json +6 -7
- package/dist/convert-mp3-to-pcm.d.ts +0 -7
- package/dist/convert-mp3-to-pcm.d.ts.map +0 -1
- package/dist/convert-mp3-to-pcm.js +0 -41
- package/dist/convert-mp3-to-pcm.js.map +0 -1
- package/dist/handle-null-audio.d.ts +0 -1
- package/dist/handle-null-audio.d.ts.map +0 -1
- package/dist/handle-null-audio.js +0 -2
- package/dist/handle-null-audio.js.map +0 -1
- package/dist/is-local-file.d.ts +0 -2
- package/dist/is-local-file.d.ts.map +0 -1
- package/dist/is-local-file.js +0 -13
- package/dist/is-local-file.js.map +0 -1
- package/dist/validate-frame.d.ts +0 -2
- package/dist/validate-frame.d.ts.map +0 -1
- package/dist/validate-frame.js +0 -25
- package/dist/validate-frame.js.map +0 -1
- package/dist/validate-quality.d.ts +0 -1
- package/dist/validate-quality.d.ts.map +0 -1
- package/dist/validate-quality.js +0 -2
- package/dist/validate-quality.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"download-and-map-assets-to-file.d.ts","sourceRoot":"","sources":["../../src/assets/download-and-map-assets-to-file.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"download-and-map-assets-to-file.d.ts","sourceRoot":"","sources":["../../src/assets/download-and-map-assets-to-file.ts"],"names":[],"mappings":"AAIA,OAAO,EAAoB,MAAM,EAAC,MAAM,UAAU,CAAC;AA4BnD,eAAO,MAAM,gBAAgB,aAAc,MAAM,OAAO,MAAM,SAW7D,CAAC;AA+EF,eAAO,MAAM,yBAAyB,YAQrC,CAAC;AAEF,eAAO,MAAM,+BAA+B;SAKtC,MAAM;cACD,OAAO;mBACF,MAAM;YAyBrB,CAAC;AAEF,eAAO,MAAM,6BAA6B;oBAKzB,MAAM;mBACP,MAAM;sBACH,MAAM,KAAK,IAAI;MAC9B,QAAQ,MAAM,CAkBjB,CAAC"}
|
|
@@ -6,10 +6,10 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.downloadAndMapAssetsToFileUrl = exports.getSanitizedFilenameForAssetUrl = exports.markAllAssetsAsDownloaded = exports.validateMimeType = void 0;
|
|
7
7
|
const fs_1 = __importDefault(require("fs"));
|
|
8
8
|
const fs_2 = require("fs");
|
|
9
|
-
const got_1 = __importDefault(require("got"));
|
|
10
9
|
const path_1 = __importDefault(require("path"));
|
|
11
10
|
const remotion_1 = require("remotion");
|
|
12
11
|
const sanitize_filepath_1 = require("./sanitize-filepath");
|
|
12
|
+
const download_file_1 = require("./download-file");
|
|
13
13
|
const isDownloadingMap = {};
|
|
14
14
|
const hasBeenDownloadedMap = {};
|
|
15
15
|
const listeners = {};
|
|
@@ -100,18 +100,7 @@ const downloadAsset = async (src, to, onDownload) => {
|
|
|
100
100
|
notifyAssetIsDownloaded(src);
|
|
101
101
|
return;
|
|
102
102
|
}
|
|
103
|
-
|
|
104
|
-
// concise method to avoid this problem
|
|
105
|
-
// https://github.com/remotion-dev/remotion/issues/384#issuecomment-844398183
|
|
106
|
-
await new Promise((resolve, reject) => {
|
|
107
|
-
const writeStream = (0, fs_2.createWriteStream)(to);
|
|
108
|
-
writeStream.on('close', () => resolve());
|
|
109
|
-
writeStream.on('error', (err) => reject(err));
|
|
110
|
-
got_1.default
|
|
111
|
-
.stream(src)
|
|
112
|
-
.pipe(writeStream)
|
|
113
|
-
.on('error', (err) => reject(err));
|
|
114
|
-
});
|
|
103
|
+
await (0, download_file_1.downloadFile)(src, to);
|
|
115
104
|
notifyAssetIsDownloaded(src);
|
|
116
105
|
};
|
|
117
106
|
const markAllAssetsAsDownloaded = () => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"download-and-map-assets-to-file.js","sourceRoot":"","sources":["../../src/assets/download-and-map-assets-to-file.ts"],"names":[],"mappings":";;;;;;AAAA,4CAAoB;AACpB,
|
|
1
|
+
{"version":3,"file":"download-and-map-assets-to-file.js","sourceRoot":"","sources":["../../src/assets/download-and-map-assets-to-file.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"download-file.d.ts","sourceRoot":"","sources":["../../src/assets/download-file.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,YAAY,QAAS,MAAM,MAAM,MAAM,kBAkBnD,CAAC"}
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.downloadFile = void 0;
|
|
7
|
+
const https_1 = __importDefault(require("https"));
|
|
8
|
+
const fs_1 = require("fs");
|
|
9
|
+
const downloadFile = (url, to) => {
|
|
10
|
+
return new Promise((resolve, reject) => {
|
|
11
|
+
const writeStream = (0, fs_1.createWriteStream)(to);
|
|
12
|
+
// Listen to 'close' event instead of more
|
|
13
|
+
// concise method to avoid this problem
|
|
14
|
+
// https://github.com/remotion-dev/remotion/issues/384#issuecomment-844398183
|
|
15
|
+
writeStream.on('close', () => resolve());
|
|
16
|
+
writeStream.on('error', (err) => reject(err));
|
|
17
|
+
https_1.default
|
|
18
|
+
.get(url, (res) => {
|
|
19
|
+
res.pipe(writeStream).on('error', (err) => reject(err));
|
|
20
|
+
})
|
|
21
|
+
.on('error', (err) => {
|
|
22
|
+
return reject(err);
|
|
23
|
+
});
|
|
24
|
+
});
|
|
25
|
+
};
|
|
26
|
+
exports.downloadFile = downloadFile;
|
|
27
|
+
//# sourceMappingURL=download-file.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"download-file.js","sourceRoot":"","sources":["../../src/assets/download-file.ts"],"names":[],"mappings":";;;;;;AAAA,kDAA0B;AAC1B,2BAAqC;AAE9B,MAAM,YAAY,GAAG,CAAC,GAAW,EAAE,EAAU,EAAE,EAAE;IACvD,OAAO,IAAI,OAAO,CAAO,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;QAC5C,MAAM,WAAW,GAAG,IAAA,sBAAiB,EAAC,EAAE,CAAC,CAAC;QAE1C,0CAA0C;QAC1C,uCAAuC;QACvC,6EAA6E;QAC7E,WAAW,CAAC,EAAE,CAAC,OAAO,EAAE,GAAG,EAAE,CAAC,OAAO,EAAE,CAAC,CAAC;QACzC,WAAW,CAAC,EAAE,CAAC,OAAO,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;QAE9C,eAAK;aACH,GAAG,CAAC,GAAG,EAAE,CAAC,GAAG,EAAE,EAAE;YACjB,GAAG,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,EAAE,CAAC,OAAO,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC;QACzD,CAAC,CAAC;aACD,EAAE,CAAC,OAAO,EAAE,CAAC,GAAG,EAAE,EAAE;YACpB,OAAO,MAAM,CAAC,GAAG,CAAC,CAAC;QACpB,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACJ,CAAC,CAAC;AAlBW,QAAA,YAAY,gBAkBvB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-pro-res-profile-name.d.ts","sourceRoot":"","sources":["../src/get-pro-res-profile-name.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,KAAK,EAAE,aAAa,EAAC,MAAM,UAAU,CAAC;AAE9C,eAAO,MAAM,oBAAoB,UACzB,KAAK,iBACG,aAAa,GAAG,SAAS,KACtC,MAAM,GAAG,IAqBX,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getProResProfileName = void 0;
|
|
4
|
+
const getProResProfileName = (codec, proResProfile) => {
|
|
5
|
+
if (codec !== 'prores') {
|
|
6
|
+
return null;
|
|
7
|
+
}
|
|
8
|
+
switch (proResProfile) {
|
|
9
|
+
case '4444-xq':
|
|
10
|
+
return '5';
|
|
11
|
+
case '4444':
|
|
12
|
+
return '4';
|
|
13
|
+
case 'hq':
|
|
14
|
+
return '3';
|
|
15
|
+
case 'standard':
|
|
16
|
+
return '2';
|
|
17
|
+
case 'light':
|
|
18
|
+
return '1';
|
|
19
|
+
case 'proxy':
|
|
20
|
+
return '0';
|
|
21
|
+
default:
|
|
22
|
+
return '3';
|
|
23
|
+
}
|
|
24
|
+
};
|
|
25
|
+
exports.getProResProfileName = getProResProfileName;
|
|
26
|
+
//# sourceMappingURL=get-pro-res-profile-name.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-pro-res-profile-name.js","sourceRoot":"","sources":["../src/get-pro-res-profile-name.ts"],"names":[],"mappings":";;;AAEO,MAAM,oBAAoB,GAAG,CACnC,KAAY,EACZ,aAAwC,EACxB,EAAE;IAClB,IAAI,KAAK,KAAK,QAAQ,EAAE;QACvB,OAAO,IAAI,CAAC;KACZ;IAED,QAAQ,aAAa,EAAE;QACtB,KAAK,SAAS;YACb,OAAO,GAAG,CAAC;QACZ,KAAK,MAAM;YACV,OAAO,GAAG,CAAC;QACZ,KAAK,IAAI;YACR,OAAO,GAAG,CAAC;QACZ,KAAK,UAAU;YACd,OAAO,GAAG,CAAC;QACZ,KAAK,OAAO;YACX,OAAO,GAAG,CAAC;QACZ,KAAK,OAAO;YACX,OAAO,GAAG,CAAC;QACZ;YACC,OAAO,GAAG,CAAC;KACZ;AACF,CAAC,CAAC;AAxBW,QAAA,oBAAoB,wBAwB/B"}
|
package/dist/render-video.d.ts
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import type { Browser as PuppeteerBrowser } from 'puppeteer-core';
|
|
2
2
|
import { Browser, Codec, FfmpegExecutable, FrameRange, PixelFormat, ProResProfile, TCompMetadata } from 'remotion';
|
|
3
|
-
export declare type
|
|
4
|
-
export declare type
|
|
3
|
+
export declare type RenderMediaOnDownload = (src: string) => void;
|
|
4
|
+
export declare type StitchingState = 'encoding' | 'muxing';
|
|
5
|
+
export declare type RenderMediaOnProgress = (progress: {
|
|
5
6
|
renderedFrames: number;
|
|
6
7
|
encodedFrames: number;
|
|
7
8
|
encodedDoneIn: number | null;
|
|
8
9
|
renderedDoneIn: number | null;
|
|
9
|
-
stitchStage:
|
|
10
|
+
stitchStage: StitchingState;
|
|
10
11
|
}) => void;
|
|
11
|
-
export declare type
|
|
12
|
+
export declare type RenderMediaOptions = {
|
|
12
13
|
proResProfile: ProResProfile | undefined;
|
|
13
14
|
parallelism: number | null;
|
|
14
15
|
parallelEncoding: boolean;
|
|
@@ -28,11 +29,11 @@ export declare type RenderVideoOptions = {
|
|
|
28
29
|
openedBrowser: PuppeteerBrowser;
|
|
29
30
|
overwrite: boolean;
|
|
30
31
|
absoluteOutputFile: string;
|
|
31
|
-
onProgress
|
|
32
|
-
shouldOutputImageSequence: boolean;
|
|
32
|
+
onProgress?: RenderMediaOnProgress;
|
|
33
33
|
fileExtension: string | null;
|
|
34
34
|
bundled: string;
|
|
35
35
|
onDownload: (src: string) => void;
|
|
36
|
+
dumpBrowserLogs: boolean;
|
|
36
37
|
};
|
|
37
|
-
export declare const
|
|
38
|
+
export declare const renderMedia: ({ parallelism, proResProfile, parallelEncoding, crf, outputDir, config, imageFormat, ffmpegExecutable, inputProps, pixelFormat, codec, envVariables, quality, frameRange, browser, serveUrl, openedBrowser, absoluteOutputFile, onProgress, overwrite, fileExtension, bundled, onDownload, dumpBrowserLogs, }: RenderMediaOptions) => Promise<void>;
|
|
38
39
|
//# sourceMappingURL=render-video.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"render-video.d.ts","sourceRoot":"","sources":["../src/render-video.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,OAAO,IAAI,gBAAgB,EAAC,MAAM,gBAAgB,CAAC;AAChE,OAAO,EACN,OAAO,EACP,KAAK,EACL,gBAAgB,EAChB,UAAU,EAEV,WAAW,EACX,aAAa,EACb,aAAa,EACb,MAAM,UAAU,CAAC;AAIlB,oBAAY,qBAAqB,GAAG,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;AAE1D,oBAAY,qBAAqB,GAAG,CAAC,QAAQ,EAAE;IAC9C,cAAc,EAAE,MAAM,CAAC;IACvB,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"render-video.d.ts","sourceRoot":"","sources":["../src/render-video.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAC,OAAO,IAAI,gBAAgB,EAAC,MAAM,gBAAgB,CAAC;AAChE,OAAO,EACN,OAAO,EACP,KAAK,EACL,gBAAgB,EAChB,UAAU,EAEV,WAAW,EACX,aAAa,EACb,aAAa,EACb,MAAM,UAAU,CAAC;AAIlB,oBAAY,qBAAqB,GAAG,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;AAE1D,oBAAY,cAAc,GAAG,UAAU,GAAG,QAAQ,CAAC;AAEnD,oBAAY,qBAAqB,GAAG,CAAC,QAAQ,EAAE;IAC9C,cAAc,EAAE,MAAM,CAAC;IACvB,aAAa,EAAE,MAAM,CAAC;IACtB,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;IAC9B,WAAW,EAAE,cAAc,CAAC;CAC5B,KAAK,IAAI,CAAC;AAEX,oBAAY,kBAAkB,GAAG;IAChC,aAAa,EAAE,aAAa,GAAG,SAAS,CAAC;IACzC,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;IAC3B,gBAAgB,EAAE,OAAO,CAAC;IAC1B,GAAG,EAAE,MAAM,GAAG,IAAI,CAAC;IACnB,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,aAAa,CAAC;IACtB,WAAW,EAAE,KAAK,GAAG,MAAM,GAAG,MAAM,CAAC;IACrC,gBAAgB,EAAE,gBAAgB,CAAC;IACnC,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,WAAW,CAAC;IACzB,KAAK,EAAE,KAAK,CAAC;IACb,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACrC,OAAO,EAAE,MAAM,GAAG,SAAS,CAAC;IAC5B,UAAU,EAAE,UAAU,GAAG,IAAI,CAAC;IAC9B,OAAO,EAAE,OAAO,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,aAAa,EAAE,gBAAgB,CAAC;IAChC,SAAS,EAAE,OAAO,CAAC;IACnB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,UAAU,CAAC,EAAE,qBAAqB,CAAC;IACnC,aAAa,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,CAAC,GAAG,EAAE,MAAM,KAAK,IAAI,CAAC;IAClC,eAAe,EAAE,OAAO,CAAC;CACzB,CAAC;AAEF,eAAO,MAAM,WAAW,kTAyBrB,kBAAkB,kBAuIpB,CAAC"}
|
package/dist/render-video.js
CHANGED
|
@@ -3,14 +3,15 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
6
|
+
exports.renderMedia = void 0;
|
|
7
7
|
const fs_1 = __importDefault(require("fs"));
|
|
8
8
|
const path_1 = __importDefault(require("path"));
|
|
9
9
|
const remotion_1 = require("remotion");
|
|
10
10
|
const stitcher_1 = require("./stitcher");
|
|
11
11
|
const render_1 = require("./render");
|
|
12
|
-
const
|
|
12
|
+
const renderMedia = async ({ parallelism, proResProfile, parallelEncoding, crf, outputDir, config, imageFormat, ffmpegExecutable, inputProps, pixelFormat, codec, envVariables, quality, frameRange, browser, serveUrl, openedBrowser, absoluteOutputFile, onProgress, overwrite, fileExtension, bundled, onDownload, dumpBrowserLogs, }) => {
|
|
13
13
|
var _a, _b;
|
|
14
|
+
let stitchStage = 'encoding';
|
|
14
15
|
let stitcherFfmpeg;
|
|
15
16
|
let preStitcher;
|
|
16
17
|
let encodedFrames = 0;
|
|
@@ -19,6 +20,15 @@ const renderVideo = async ({ parallelism, proResProfile, parallelEncoding, crf,
|
|
|
19
20
|
let renderedDoneIn = null;
|
|
20
21
|
let encodedDoneIn = null;
|
|
21
22
|
const renderStart = Date.now();
|
|
23
|
+
const callUpdate = () => {
|
|
24
|
+
onProgress === null || onProgress === void 0 ? void 0 : onProgress({
|
|
25
|
+
encodedDoneIn,
|
|
26
|
+
encodedFrames,
|
|
27
|
+
renderedDoneIn,
|
|
28
|
+
renderedFrames,
|
|
29
|
+
stitchStage,
|
|
30
|
+
});
|
|
31
|
+
};
|
|
22
32
|
if (parallelEncoding) {
|
|
23
33
|
if (typeof crf !== 'number') {
|
|
24
34
|
throw new TypeError('CRF is unexpectedly not a number');
|
|
@@ -39,13 +49,7 @@ const renderVideo = async ({ parallelism, proResProfile, parallelEncoding, crf,
|
|
|
39
49
|
parallelism,
|
|
40
50
|
onProgress: (frame) => {
|
|
41
51
|
encodedFrames = frame;
|
|
42
|
-
|
|
43
|
-
encodedFrames,
|
|
44
|
-
renderedFrames,
|
|
45
|
-
encodedDoneIn: null,
|
|
46
|
-
renderedDoneIn: null,
|
|
47
|
-
stitchStage: 'encoding',
|
|
48
|
-
});
|
|
52
|
+
callUpdate();
|
|
49
53
|
},
|
|
50
54
|
verbose: remotion_1.Internals.Logging.isEqualOrBelowLogLevel('verbose'),
|
|
51
55
|
parallelEncoding,
|
|
@@ -55,31 +59,17 @@ const renderVideo = async ({ parallelism, proResProfile, parallelEncoding, crf,
|
|
|
55
59
|
});
|
|
56
60
|
stitcherFfmpeg = preStitcher.task;
|
|
57
61
|
}
|
|
58
|
-
const
|
|
62
|
+
const { assetsInfo } = await (0, render_1.renderFrames)({
|
|
59
63
|
config,
|
|
60
64
|
onFrameUpdate: (frame) => {
|
|
61
65
|
renderedFrames = frame;
|
|
62
|
-
|
|
63
|
-
encodedFrames,
|
|
64
|
-
renderedFrames,
|
|
65
|
-
encodedDoneIn,
|
|
66
|
-
renderedDoneIn,
|
|
67
|
-
stitchStage: 'encoding',
|
|
68
|
-
});
|
|
66
|
+
callUpdate();
|
|
69
67
|
},
|
|
70
68
|
parallelism,
|
|
71
|
-
parallelEncoding,
|
|
72
69
|
outputDir,
|
|
73
70
|
onStart: () => {
|
|
74
71
|
renderedFrames = 0;
|
|
75
|
-
|
|
76
|
-
encodedDoneIn,
|
|
77
|
-
encodedFrames,
|
|
78
|
-
renderedDoneIn,
|
|
79
|
-
renderedFrames,
|
|
80
|
-
// TODO: Keep a state
|
|
81
|
-
stitchStage: 'encoding',
|
|
82
|
-
});
|
|
72
|
+
callUpdate();
|
|
83
73
|
},
|
|
84
74
|
inputProps,
|
|
85
75
|
envVariables,
|
|
@@ -93,8 +83,8 @@ const renderVideo = async ({ parallelism, proResProfile, parallelEncoding, crf,
|
|
|
93
83
|
(_a = stitcherFfmpeg === null || stitcherFfmpeg === void 0 ? void 0 : stitcherFfmpeg.stdin) === null || _a === void 0 ? void 0 : _a.write(buffer);
|
|
94
84
|
},
|
|
95
85
|
serveUrl,
|
|
86
|
+
dumpBrowserLogs,
|
|
96
87
|
});
|
|
97
|
-
const { assetsInfo } = await renderer;
|
|
98
88
|
if (stitcherFfmpeg) {
|
|
99
89
|
(_a = stitcherFfmpeg === null || stitcherFfmpeg === void 0 ? void 0 : stitcherFfmpeg.stdin) === null || _a === void 0 ? void 0 : _a.end();
|
|
100
90
|
await stitcherFfmpeg;
|
|
@@ -102,19 +92,7 @@ const renderVideo = async ({ parallelism, proResProfile, parallelEncoding, crf,
|
|
|
102
92
|
}
|
|
103
93
|
const closeBrowserPromise = openedBrowser.close();
|
|
104
94
|
renderedDoneIn = Date.now() - renderStart;
|
|
105
|
-
|
|
106
|
-
encodedFrames,
|
|
107
|
-
renderedFrames,
|
|
108
|
-
renderedDoneIn,
|
|
109
|
-
encodedDoneIn,
|
|
110
|
-
stitchStage: 'encoding',
|
|
111
|
-
});
|
|
112
|
-
if (process.env.DEBUG) {
|
|
113
|
-
remotion_1.Internals.perf.logPerf();
|
|
114
|
-
}
|
|
115
|
-
if (shouldOutputImageSequence) {
|
|
116
|
-
return;
|
|
117
|
-
}
|
|
95
|
+
callUpdate();
|
|
118
96
|
if (typeof crf !== 'number') {
|
|
119
97
|
throw new TypeError('CRF is unexpectedly not a number');
|
|
120
98
|
}
|
|
@@ -142,28 +120,19 @@ const renderVideo = async ({ parallelism, proResProfile, parallelEncoding, crf,
|
|
|
142
120
|
parallelism,
|
|
143
121
|
ffmpegExecutable,
|
|
144
122
|
onProgress: (frame) => {
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
renderedDoneIn,
|
|
149
|
-
encodedDoneIn,
|
|
150
|
-
stitchStage: 'muxing',
|
|
151
|
-
});
|
|
123
|
+
stitchStage = 'muxing';
|
|
124
|
+
encodedFrames = frame;
|
|
125
|
+
callUpdate();
|
|
152
126
|
},
|
|
153
127
|
// TODO: Optimization, Now can download before!
|
|
154
128
|
onDownload,
|
|
155
129
|
webpackBundle: bundled,
|
|
156
130
|
verbose: remotion_1.Internals.Logging.isEqualOrBelowLogLevel('verbose'),
|
|
157
131
|
});
|
|
132
|
+
encodedFrames = config.durationInFrames;
|
|
158
133
|
encodedDoneIn = Date.now() - stitchStart;
|
|
159
|
-
|
|
160
|
-
encodedDoneIn,
|
|
161
|
-
encodedFrames,
|
|
162
|
-
renderedDoneIn,
|
|
163
|
-
renderedFrames,
|
|
164
|
-
stitchStage: 'muxing',
|
|
165
|
-
});
|
|
134
|
+
callUpdate();
|
|
166
135
|
await closeBrowserPromise;
|
|
167
136
|
};
|
|
168
|
-
exports.
|
|
137
|
+
exports.renderMedia = renderMedia;
|
|
169
138
|
//# sourceMappingURL=render-video.js.map
|
package/dist/render-video.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"render-video.js","sourceRoot":"","sources":["../src/render-video.ts"],"names":[],"mappings":";;;;;;AACA,4CAAoB;AACpB,gDAAwB;AAExB,uCASkB;AAClB,yCAA4D;AAC5D,qCAAsC;
|
|
1
|
+
{"version":3,"file":"render-video.js","sourceRoot":"","sources":["../src/render-video.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import execa from 'execa';
|
|
2
|
+
export declare const ENABLE_WASM_FFMPEG = true;
|
|
3
|
+
export declare const wasmFfmpeg: import("@ffmpeg/ffmpeg").FFmpeg;
|
|
4
|
+
export declare const load: Promise<void>;
|
|
5
|
+
export declare const runFfmpegCommand: (args: string[], isRenderBad: boolean, options?: execa.Options<string> | undefined) => Promise<execa.ExecaReturnValue<string>>;
|
|
6
|
+
//# sourceMappingURL=run-ffmpeg-command.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"run-ffmpeg-command.d.ts","sourceRoot":"","sources":["../src/run-ffmpeg-command.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAG1B,eAAO,MAAM,kBAAkB,OAAO,CAAC;AAEvC,eAAO,MAAM,UAAU,iCAA4B,CAAC;AACpD,eAAO,MAAM,IAAI,eAAoB,CAAC;AAEtC,eAAO,MAAM,gBAAgB,SACtB,MAAM,EAAE,eACD,OAAO,yFAgBpB,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.runFfmpegCommand = exports.load = exports.wasmFfmpeg = exports.ENABLE_WASM_FFMPEG = void 0;
|
|
7
|
+
const ffmpeg_1 = require("@ffmpeg/ffmpeg");
|
|
8
|
+
const execa_1 = __importDefault(require("execa"));
|
|
9
|
+
const fs_1 = __importDefault(require("fs"));
|
|
10
|
+
exports.ENABLE_WASM_FFMPEG = true;
|
|
11
|
+
exports.wasmFfmpeg = ffmpeg_1.createFFmpeg({ log: true });
|
|
12
|
+
exports.load = exports.wasmFfmpeg.load();
|
|
13
|
+
const runFfmpegCommand = async (args, isRenderBad, options) => {
|
|
14
|
+
await exports.load;
|
|
15
|
+
await exports.wasmFfmpeg.run(...args);
|
|
16
|
+
if (isRenderBad) {
|
|
17
|
+
await fs_1.default.promises.writeFile('./hi.mp4',
|
|
18
|
+
// eslint-disable-next-line new-cap
|
|
19
|
+
exports.wasmFfmpeg.FS('readFile', 'hi.mp4'));
|
|
20
|
+
}
|
|
21
|
+
console.log('wasm done');
|
|
22
|
+
return execa_1.default('ffmpeg', args, options);
|
|
23
|
+
};
|
|
24
|
+
exports.runFfmpegCommand = runFfmpegCommand;
|
|
25
|
+
//# sourceMappingURL=run-ffmpeg-command.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"run-ffmpeg-command.js","sourceRoot":"","sources":["../src/run-ffmpeg-command.ts"],"names":[],"mappings":";;;;;;AAAA,2CAA4C;AAC5C,kDAA0B;AAC1B,4CAAoB;AAEP,QAAA,kBAAkB,GAAG,IAAI,CAAC;AAE1B,QAAA,UAAU,GAAG,qBAAY,CAAC,EAAC,GAAG,EAAE,IAAI,EAAC,CAAC,CAAC;AACvC,QAAA,IAAI,GAAG,kBAAU,CAAC,IAAI,EAAE,CAAC;AAE/B,MAAM,gBAAgB,GAAG,KAAK,EACpC,IAAc,EACd,WAAoB,EACpB,OAAuB,EACtB,EAAE;IACH,MAAM,YAAI,CAAC;IAEX,MAAM,kBAAU,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,CAAC;IAC9B,IAAI,WAAW,EAAE;QAChB,MAAM,YAAE,CAAC,QAAQ,CAAC,SAAS,CAC1B,UAAU;QACV,mCAAmC;QACnC,kBAAU,CAAC,EAAE,CAAC,UAAU,EAAE,QAAQ,CAAC,CACnC,CAAC;KACF;IAED,OAAO,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IACzB,OAAO,eAAK,CAAC,QAAQ,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;AACvC,CAAC,CAAC;AAlBW,QAAA,gBAAgB,oBAkB3B"}
|
package/dist/stitcher.d.ts
CHANGED
|
@@ -7,14 +7,14 @@ export declare const stitchFramesToVideo: (options: {
|
|
|
7
7
|
outputLocation: string;
|
|
8
8
|
force: boolean;
|
|
9
9
|
assetsInfo: RenderAssetInfo;
|
|
10
|
-
imageFormat?: "
|
|
10
|
+
imageFormat?: "png" | "jpeg" | "none" | undefined;
|
|
11
11
|
pixelFormat?: "yuv420p" | "yuva420p" | "yuv422p" | "yuv444p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le" | "yuva444p10le" | undefined;
|
|
12
12
|
codec?: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv" | undefined;
|
|
13
13
|
crf?: number | undefined;
|
|
14
14
|
parallelism?: number | null | undefined;
|
|
15
15
|
onProgress?: ((progress: number) => void) | undefined;
|
|
16
16
|
onDownload?: ((src: string) => void) | undefined;
|
|
17
|
-
proResProfile?: "4444-xq" | "4444" | "hq" | "standard" | "
|
|
17
|
+
proResProfile?: "light" | "4444-xq" | "4444" | "hq" | "standard" | "proxy" | undefined;
|
|
18
18
|
verbose?: boolean | undefined;
|
|
19
19
|
ffmpegExecutable?: FfmpegExecutable | undefined;
|
|
20
20
|
}) => Promise<void>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/renderer",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.6",
|
|
4
4
|
"description": "Renderer for Remotion",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -16,13 +16,11 @@
|
|
|
16
16
|
"url": "https://github.com/remotion-dev/remotion"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@remotion/bundler": "2.6.
|
|
20
|
-
"@testing-library/dom": "^8.7.2",
|
|
19
|
+
"@remotion/bundler": "2.6.6",
|
|
21
20
|
"execa": "^4.0.2",
|
|
22
|
-
"got": "11.8.2",
|
|
23
21
|
"p-limit": "^3.1.0",
|
|
24
|
-
"puppeteer-core": "^
|
|
25
|
-
"remotion": "2.6.
|
|
22
|
+
"puppeteer-core": "^13.1.2",
|
|
23
|
+
"remotion": "2.6.6",
|
|
26
24
|
"serve-handler": "^6.1.3"
|
|
27
25
|
},
|
|
28
26
|
"peerDependencies": {
|
|
@@ -31,6 +29,7 @@
|
|
|
31
29
|
},
|
|
32
30
|
"devDependencies": {
|
|
33
31
|
"@jonny/eslint-config": "^2.1.248",
|
|
32
|
+
"@testing-library/dom": "^8.7.2",
|
|
34
33
|
"@testing-library/react": "^11.2.5",
|
|
35
34
|
"@types/jest": "^27.0.2",
|
|
36
35
|
"@types/node": "^16.7.5",
|
|
@@ -45,5 +44,5 @@
|
|
|
45
44
|
"publishConfig": {
|
|
46
45
|
"access": "public"
|
|
47
46
|
},
|
|
48
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "779acc581675f7c4682bd229baa7f410cbf39b82"
|
|
49
48
|
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
export declare const getPcmOutputName: (inputName: string) => string;
|
|
2
|
-
export declare const conversionStarted: {
|
|
3
|
-
[key: string]: boolean;
|
|
4
|
-
};
|
|
5
|
-
export declare const convertMp3ToPcm: (source: string) => Promise<string>;
|
|
6
|
-
export declare const clearMp3Conversions: () => void;
|
|
7
|
-
//# sourceMappingURL=convert-mp3-to-pcm.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"convert-mp3-to-pcm.d.ts","sourceRoot":"","sources":["../src/convert-mp3-to-pcm.ts"],"names":[],"mappings":"AAKA,eAAO,MAAM,gBAAgB,cAAe,MAAM,WAMjD,CAAC;AAQF,eAAO,MAAM,iBAAiB,EAAE;IAAC,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;CAAM,CAAC;AAE9D,eAAO,MAAM,eAAe,WAAkB,MAAM,oBAcnD,CAAC;AAEF,eAAO,MAAM,mBAAmB,YAI/B,CAAC"}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
// For the h264-mkv format, we need to convert an MP3 file to PCM first
|
|
3
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
5
|
-
};
|
|
6
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
7
|
-
exports.clearMp3Conversions = exports.convertMp3ToPcm = exports.conversionStarted = exports.getPcmOutputName = void 0;
|
|
8
|
-
const execa_1 = __importDefault(require("execa"));
|
|
9
|
-
const path_1 = __importDefault(require("path"));
|
|
10
|
-
const getPcmOutputName = (inputName) => {
|
|
11
|
-
const dirname = path_1.default.dirname(inputName);
|
|
12
|
-
const extension = path_1.default.extname(inputName);
|
|
13
|
-
const filename = path_1.default.basename(inputName, extension);
|
|
14
|
-
return path_1.default.join(dirname, `${filename}-converted.wav`);
|
|
15
|
-
};
|
|
16
|
-
exports.getPcmOutputName = getPcmOutputName;
|
|
17
|
-
const isMp3 = async (source) => {
|
|
18
|
-
const { stderr } = await (0, execa_1.default)('ffprobe', [source]);
|
|
19
|
-
return stderr.includes('Audio: mp3');
|
|
20
|
-
};
|
|
21
|
-
exports.conversionStarted = {};
|
|
22
|
-
const convertMp3ToPcm = async (source) => {
|
|
23
|
-
const outname = (0, exports.getPcmOutputName)(source);
|
|
24
|
-
if (!(await isMp3(source))) {
|
|
25
|
-
return source;
|
|
26
|
-
}
|
|
27
|
-
if (exports.conversionStarted[source]) {
|
|
28
|
-
return outname;
|
|
29
|
-
}
|
|
30
|
-
exports.conversionStarted[source] = true;
|
|
31
|
-
await (0, execa_1.default)('ffmpeg', ['-y', '-i', source, (0, exports.getPcmOutputName)(source)]);
|
|
32
|
-
return outname;
|
|
33
|
-
};
|
|
34
|
-
exports.convertMp3ToPcm = convertMp3ToPcm;
|
|
35
|
-
const clearMp3Conversions = () => {
|
|
36
|
-
Object.keys(exports.conversionStarted).forEach((key) => {
|
|
37
|
-
delete exports.conversionStarted[key];
|
|
38
|
-
});
|
|
39
|
-
};
|
|
40
|
-
exports.clearMp3Conversions = clearMp3Conversions;
|
|
41
|
-
//# sourceMappingURL=convert-mp3-to-pcm.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"convert-mp3-to-pcm.js","sourceRoot":"","sources":["../src/convert-mp3-to-pcm.ts"],"names":[],"mappings":";AAAA,uEAAuE;;;;;;AAEvE,kDAA0B;AAC1B,gDAAwB;AAEjB,MAAM,gBAAgB,GAAG,CAAC,SAAiB,EAAE,EAAE;IACrD,MAAM,OAAO,GAAG,cAAI,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;IACxC,MAAM,SAAS,GAAG,cAAI,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;IAC1C,MAAM,QAAQ,GAAG,cAAI,CAAC,QAAQ,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;IAErD,OAAO,cAAI,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,QAAQ,gBAAgB,CAAC,CAAC;AACxD,CAAC,CAAC;AANW,QAAA,gBAAgB,oBAM3B;AAEF,MAAM,KAAK,GAAG,KAAK,EAAE,MAAc,EAAE,EAAE;IACtC,MAAM,EAAC,MAAM,EAAC,GAAG,MAAM,IAAA,eAAK,EAAC,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC;IAElD,OAAO,MAAM,CAAC,QAAQ,CAAC,YAAY,CAAC,CAAC;AACtC,CAAC,CAAC;AAEW,QAAA,iBAAiB,GAA6B,EAAE,CAAC;AAEvD,MAAM,eAAe,GAAG,KAAK,EAAE,MAAc,EAAE,EAAE;IACvD,MAAM,OAAO,GAAG,IAAA,wBAAgB,EAAC,MAAM,CAAC,CAAC;IACzC,IAAI,CAAC,CAAC,MAAM,KAAK,CAAC,MAAM,CAAC,CAAC,EAAE;QAC3B,OAAO,MAAM,CAAC;KACd;IAED,IAAI,yBAAiB,CAAC,MAAM,CAAC,EAAE;QAC9B,OAAO,OAAO,CAAC;KACf;IAED,yBAAiB,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAEjC,MAAM,IAAA,eAAK,EAAC,QAAQ,EAAE,CAAC,IAAI,EAAE,IAAI,EAAE,MAAM,EAAE,IAAA,wBAAgB,EAAC,MAAM,CAAC,CAAC,CAAC,CAAC;IACtE,OAAO,OAAO,CAAC;AAChB,CAAC,CAAC;AAdW,QAAA,eAAe,mBAc1B;AAEK,MAAM,mBAAmB,GAAG,GAAG,EAAE;IACvC,MAAM,CAAC,IAAI,CAAC,yBAAiB,CAAC,CAAC,OAAO,CAAC,CAAC,GAAG,EAAE,EAAE;QAC9C,OAAO,yBAAiB,CAAC,GAAG,CAAC,CAAC;IAC/B,CAAC,CAAC,CAAC;AACJ,CAAC,CAAC;AAJW,QAAA,mBAAmB,uBAI9B"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=handle-null-audio.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"handle-null-audio.d.ts","sourceRoot":"","sources":["../src/handle-null-audio.ts"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"handle-null-audio.js","sourceRoot":"","sources":["../src/handle-null-audio.ts"],"names":[],"mappings":""}
|
package/dist/is-local-file.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"is-local-file.d.ts","sourceRoot":"","sources":["../src/is-local-file.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,UAAU,iBAAkB,MAAM,YAY9C,CAAC"}
|
package/dist/is-local-file.js
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.isServeUrl = void 0;
|
|
4
|
-
const isServeUrl = (potentialUrl) => {
|
|
5
|
-
// Theoretically not a valid URL but handle the most basic cases of forgetting protocol in front
|
|
6
|
-
if (potentialUrl.startsWith('www.') ||
|
|
7
|
-
potentialUrl.includes('amazonaws.com')) {
|
|
8
|
-
return true;
|
|
9
|
-
}
|
|
10
|
-
return (potentialUrl.startsWith('https://') || !potentialUrl.startsWith('http://'));
|
|
11
|
-
};
|
|
12
|
-
exports.isServeUrl = isServeUrl;
|
|
13
|
-
//# sourceMappingURL=is-local-file.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"is-local-file.js","sourceRoot":"","sources":["../src/is-local-file.ts"],"names":[],"mappings":";;;AAAO,MAAM,UAAU,GAAG,CAAC,YAAoB,EAAE,EAAE;IAClD,gGAAgG;IAChG,IACC,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC;QAC/B,YAAY,CAAC,QAAQ,CAAC,eAAe,CAAC,EACrC;QACD,OAAO,IAAI,CAAC;KACZ;IAED,OAAO,CACN,YAAY,CAAC,UAAU,CAAC,UAAU,CAAC,IAAI,CAAC,YAAY,CAAC,UAAU,CAAC,SAAS,CAAC,CAC1E,CAAC;AACH,CAAC,CAAC;AAZW,QAAA,UAAU,cAYrB"}
|
package/dist/validate-frame.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validate-frame.d.ts","sourceRoot":"","sources":["../src/validate-frame.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,aAAa,UAAW,MAAM,oBAAoB,MAAM,SAgCpE,CAAC"}
|
package/dist/validate-frame.js
DELETED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.validateFrame = void 0;
|
|
4
|
-
const validateFrame = (frame, durationInFrames) => {
|
|
5
|
-
if (typeof frame === 'undefined') {
|
|
6
|
-
throw new TypeError(`Argument missing for parameter "frame"`);
|
|
7
|
-
}
|
|
8
|
-
if (typeof frame !== 'number') {
|
|
9
|
-
throw new TypeError(`Argument passed for "frame" is not a number: ${frame}`);
|
|
10
|
-
}
|
|
11
|
-
if (frame < 0) {
|
|
12
|
-
throw new RangeError(`Frame ${frame} cannot be negative`);
|
|
13
|
-
}
|
|
14
|
-
if (!Number.isFinite(frame)) {
|
|
15
|
-
throw new RangeError(`Frame ${frame} is not finite`);
|
|
16
|
-
}
|
|
17
|
-
if (frame % 1 !== 0) {
|
|
18
|
-
throw new RangeError(`Argument for frame must be an integer, but got ${frame}`);
|
|
19
|
-
}
|
|
20
|
-
if (frame > durationInFrames - 1) {
|
|
21
|
-
throw new RangeError(`Cannot use frame ${frame}: Duration of composition is ${durationInFrames}, therefore the highest frame that can be rendered is ${durationInFrames - 1}`);
|
|
22
|
-
}
|
|
23
|
-
};
|
|
24
|
-
exports.validateFrame = validateFrame;
|
|
25
|
-
//# sourceMappingURL=validate-frame.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validate-frame.js","sourceRoot":"","sources":["../src/validate-frame.ts"],"names":[],"mappings":";;;AAAO,MAAM,aAAa,GAAG,CAAC,KAAa,EAAE,gBAAwB,EAAE,EAAE;IACxE,IAAI,OAAO,KAAK,KAAK,WAAW,EAAE;QACjC,MAAM,IAAI,SAAS,CAAC,wCAAwC,CAAC,CAAC;KAC9D;IAED,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE;QAC9B,MAAM,IAAI,SAAS,CAClB,gDAAgD,KAAK,EAAE,CACvD,CAAC;KACF;IAED,IAAI,KAAK,GAAG,CAAC,EAAE;QACd,MAAM,IAAI,UAAU,CAAC,SAAS,KAAK,qBAAqB,CAAC,CAAC;KAC1D;IAED,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,KAAK,CAAC,EAAE;QAC5B,MAAM,IAAI,UAAU,CAAC,SAAS,KAAK,gBAAgB,CAAC,CAAC;KACrD;IAED,IAAI,KAAK,GAAG,CAAC,KAAK,CAAC,EAAE;QACpB,MAAM,IAAI,UAAU,CACnB,kDAAkD,KAAK,EAAE,CACzD,CAAC;KACF;IAED,IAAI,KAAK,GAAG,gBAAgB,GAAG,CAAC,EAAE;QACjC,MAAM,IAAI,UAAU,CACnB,oBAAoB,KAAK,gCAAgC,gBAAgB,yDACxE,gBAAgB,GAAG,CACpB,EAAE,CACF,CAAC;KACF;AACF,CAAC,CAAC;AAhCW,QAAA,aAAa,iBAgCxB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
//# sourceMappingURL=validate-quality.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validate-quality.d.ts","sourceRoot":"","sources":["../src/validate-quality.ts"],"names":[],"mappings":""}
|
package/dist/validate-quality.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"validate-quality.js","sourceRoot":"","sources":["../src/validate-quality.ts"],"names":[],"mappings":""}
|