@remotion/renderer 2.6.9 → 2.6.12
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/.turbo/turbo-build.log +2 -2
- package/LICENSE.md +2 -2
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +16 -5
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
[35m@remotion/renderer:build: [0mcache hit, replaying output [
|
|
1
|
+
[35m@remotion/renderer:build: [0mcache hit, replaying output [2m658d8ae71b8f9788[0m
|
|
2
2
|
[35m@remotion/renderer:build: [0m
|
|
3
|
-
[35m@remotion/renderer:build: [0m> @remotion/renderer@2.6.
|
|
3
|
+
[35m@remotion/renderer:build: [0m> @remotion/renderer@2.6.11 build /Users/jonathanburger/remotion/packages/renderer
|
|
4
4
|
[35m@remotion/renderer:build: [0m> tsc -d
|
|
5
5
|
[35m@remotion/renderer:build: [0m
|
package/LICENSE.md
CHANGED
|
@@ -7,7 +7,7 @@ Depending on the type of your legal entity, you are granted permission to use Re
|
|
|
7
7
|
|
|
8
8
|
## Free license
|
|
9
9
|
|
|
10
|
-
Copyright ©
|
|
10
|
+
Copyright © 2022 [Jonny Burger](https://jonny.io)
|
|
11
11
|
|
|
12
12
|
### Eligibility
|
|
13
13
|
|
|
@@ -32,7 +32,7 @@ The software is provided "as is", without warranty of any kind, express or impli
|
|
|
32
32
|
|
|
33
33
|
### Support
|
|
34
34
|
|
|
35
|
-
Support is provided on a best-we-can-do basis via GitHub Issues.
|
|
35
|
+
Support is provided on a best-we-can-do basis via GitHub Issues and Discord.
|
|
36
36
|
|
|
37
37
|
## Company license
|
|
38
38
|
|
package/dist/index.d.ts
CHANGED
|
@@ -36,5 +36,7 @@ export declare const RenderInternals: {
|
|
|
36
36
|
scale: number;
|
|
37
37
|
codec: "h264" | "h265" | "vp8" | "vp9" | "mp3" | "aac" | "wav" | "prores" | "h264-mkv";
|
|
38
38
|
}) => void;
|
|
39
|
+
min: (arr: number[]) => number;
|
|
40
|
+
max: (arr: number[]) => number;
|
|
39
41
|
};
|
|
40
42
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,MAAM,EAAE,aAAa,EAAC,MAAM,UAAU,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,MAAM,EAAE,aAAa,EAAC,MAAM,UAAU,CAAC;AAa/C,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,MAAM;QACf,KAAK,EAAE,OAAO,CAAC;QACf,qBAAqB,EAAE,MAAM,aAAa,EAAE,CAAC;QAC7C,iBAAiB,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;QAC3C,sBAAsB,EAAE,MAAM,MAAM,EAAE,CAAC;KACvC;CACD;AAED,OAAO,EAAC,aAAa,EAAC,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAC,eAAe,EAAC,MAAM,oBAAoB,CAAC;AACnD,OAAO,EAAC,YAAY,EAAC,MAAM,UAAU,CAAC;AACtC,OAAO,EAAC,WAAW,EAAC,MAAM,gBAAgB,CAAC;AAC3C,OAAO,EAAC,mBAAmB,EAAC,MAAM,YAAY,CAAC;AAC/C,OAAO,EAAC,WAAW,EAAE,WAAW,EAAE,kBAAkB,EAAC,MAAM,SAAS,CAAC;AACrE,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;CAY3B,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -4,6 +4,7 @@ exports.RenderInternals = exports.stitchFramesToVideo = exports.renderStill = ex
|
|
|
4
4
|
const ffmpeg_flags_1 = require("./ffmpeg-flags");
|
|
5
5
|
const get_concurrency_1 = require("./get-concurrency");
|
|
6
6
|
const get_local_browser_executable_1 = require("./get-local-browser-executable");
|
|
7
|
+
const min_max_1 = require("./min-max");
|
|
7
8
|
const open_browser_1 = require("./open-browser");
|
|
8
9
|
const validate_even_dimensions_with_codec_1 = require("./validate-even-dimensions-with-codec");
|
|
9
10
|
const validate_ffmpeg_1 = require("./validate-ffmpeg");
|
|
@@ -25,5 +26,7 @@ exports.RenderInternals = {
|
|
|
25
26
|
binaryExists: validate_ffmpeg_1.binaryExists,
|
|
26
27
|
getFfmpegBuildInfo: ffmpeg_flags_1.getFfmpegBuildInfo,
|
|
27
28
|
validateEvenDimensionsWithCodec: validate_even_dimensions_with_codec_1.validateEvenDimensionsWithCodec,
|
|
29
|
+
min: min_max_1.min,
|
|
30
|
+
max: min_max_1.max,
|
|
28
31
|
};
|
|
29
32
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AACA,iDAIwB;AACxB,uDAAuD;AACvD,iFAAkE;AAClE,iDAA2C;AAC3C,+FAAsF;AACtF,uDAA+D;AAY/D,uDAAmD;AAA3C,mHAAA,eAAe,OAAA;AACvB,mCAAsC;AAA9B,sGAAA,YAAY,OAAA;AACpB,+CAA2C;AAAnC,2GAAA,WAAW,OAAA;AACnB,uCAA+C;AAAvC,+GAAA,mBAAmB,OAAA;AAEd,QAAA,eAAe,GAAG;IAC9B,kBAAkB,EAAlB,iDAAkB;IAClB,gBAAgB,EAAhB,+BAAgB;IAChB,oBAAoB,EAApB,sCAAoB;IACpB,gBAAgB,EAAhB,+BAAgB;IAChB,WAAW,EAAX,0BAAW;IACX,cAAc,EAAd,gCAAc;IACd,YAAY,EAAZ,8BAAY;IACZ,kBAAkB,EAAlB,iCAAkB;IAClB,+BAA+B,EAA/B,qEAA+B;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;AACA,iDAIwB;AACxB,uDAAuD;AACvD,iFAAkE;AAClE,uCAAmC;AACnC,iDAA2C;AAC3C,+FAAsF;AACtF,uDAA+D;AAY/D,uDAAmD;AAA3C,mHAAA,eAAe,OAAA;AACvB,mCAAsC;AAA9B,sGAAA,YAAY,OAAA;AACpB,+CAA2C;AAAnC,2GAAA,WAAW,OAAA;AACnB,uCAA+C;AAAvC,+GAAA,mBAAmB,OAAA;AAEd,QAAA,eAAe,GAAG;IAC9B,kBAAkB,EAAlB,iDAAkB;IAClB,gBAAgB,EAAhB,+BAAgB;IAChB,oBAAoB,EAApB,sCAAoB;IACpB,gBAAgB,EAAhB,+BAAgB;IAChB,WAAW,EAAX,0BAAW;IACX,cAAc,EAAd,gCAAc;IACd,YAAY,EAAZ,8BAAY;IACZ,kBAAkB,EAAlB,iCAAkB;IAClB,+BAA+B,EAA/B,qEAA+B;IAC/B,GAAG,EAAH,aAAG;IACH,GAAG,EAAH,aAAG;CACH,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/renderer",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.12",
|
|
4
4
|
"description": "Renderer for Remotion",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -16,12 +16,15 @@
|
|
|
16
16
|
"repository": {
|
|
17
17
|
"url": "https://github.com/remotion-dev/remotion"
|
|
18
18
|
},
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/remotion-dev/remotion/issues"
|
|
21
|
+
},
|
|
19
22
|
"dependencies": {
|
|
20
|
-
"@remotion/bundler": "2.6.
|
|
23
|
+
"@remotion/bundler": "2.6.12",
|
|
21
24
|
"execa": "5.1.1",
|
|
22
25
|
"p-limit": "3.1.0",
|
|
23
26
|
"puppeteer-core": "13.1.2",
|
|
24
|
-
"remotion": "2.6.
|
|
27
|
+
"remotion": "2.6.12",
|
|
25
28
|
"serve-handler": "6.1.3"
|
|
26
29
|
},
|
|
27
30
|
"peerDependencies": {
|
|
@@ -42,10 +45,18 @@
|
|
|
42
45
|
"prettier": "^2.0.5",
|
|
43
46
|
"prettier-plugin-organize-imports": "^1.1.1",
|
|
44
47
|
"ts-jest": "^27.0.5",
|
|
45
|
-
"typescript": "^4.
|
|
48
|
+
"typescript": "^4.5.5"
|
|
46
49
|
},
|
|
50
|
+
"keywords": [
|
|
51
|
+
"remotion",
|
|
52
|
+
"ffmpeg",
|
|
53
|
+
"video",
|
|
54
|
+
"react",
|
|
55
|
+
"puppeteer",
|
|
56
|
+
"player"
|
|
57
|
+
],
|
|
47
58
|
"publishConfig": {
|
|
48
59
|
"access": "public"
|
|
49
60
|
},
|
|
50
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "6d76097a98c44dc976cecfa04526d663339cf45c"
|
|
51
62
|
}
|