@remotion/renderer 4.0.373 → 4.0.375
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 +1 -0
- package/dist/ffmpeg-args.js +3 -0
- package/package.json +12 -12
package/dist/esm/index.mjs
CHANGED
|
@@ -19654,6 +19654,7 @@ var firstEncodingStepOnly = ({
|
|
|
19654
19654
|
["-pix_fmt", pixelFormat],
|
|
19655
19655
|
pixelFormat === "yuva420p" ? ["-auto-alt-ref", "0"] : null,
|
|
19656
19656
|
x264Preset ? ["-preset", x264Preset] : null,
|
|
19657
|
+
["-video_track_timescale", "90000"],
|
|
19657
19658
|
validateQualitySettings({
|
|
19658
19659
|
crf,
|
|
19659
19660
|
videoBitrate,
|
package/dist/ffmpeg-args.js
CHANGED
|
@@ -17,6 +17,9 @@ const firstEncodingStepOnly = ({ hasPreencoded, proResProfileName, pixelFormat,
|
|
|
17
17
|
// transparent WebM generation doesn't work
|
|
18
18
|
pixelFormat === 'yuva420p' ? ['-auto-alt-ref', '0'] : null,
|
|
19
19
|
x264Preset ? ['-preset', x264Preset] : null,
|
|
20
|
+
// Apply a fixed a timescale across all environments:
|
|
21
|
+
// https://discord.com/channels/809501355504959528/817306238811111454/1437471619089170613
|
|
22
|
+
['-video_track_timescale', '90000'],
|
|
20
23
|
(0, crf_1.validateQualitySettings)({
|
|
21
24
|
crf,
|
|
22
25
|
videoBitrate,
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"url": "https://github.com/remotion-dev/remotion/tree/main/packages/renderer"
|
|
4
4
|
},
|
|
5
5
|
"name": "@remotion/renderer",
|
|
6
|
-
"version": "4.0.
|
|
6
|
+
"version": "4.0.375",
|
|
7
7
|
"description": "Render Remotion videos using Node.js or Bun",
|
|
8
8
|
"main": "dist/index.js",
|
|
9
9
|
"types": "dist/index.d.ts",
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"execa": "5.1.1",
|
|
24
24
|
"extract-zip": "2.0.1",
|
|
25
|
-
"remotion": "4.0.
|
|
26
|
-
"@remotion/streaming": "4.0.
|
|
25
|
+
"remotion": "4.0.375",
|
|
26
|
+
"@remotion/streaming": "4.0.375",
|
|
27
27
|
"source-map": "^0.8.0-beta.0",
|
|
28
28
|
"ws": "8.17.1"
|
|
29
29
|
},
|
|
@@ -38,19 +38,19 @@
|
|
|
38
38
|
"react": "19.0.0",
|
|
39
39
|
"react-dom": "19.0.0",
|
|
40
40
|
"@types/ws": "8.5.10",
|
|
41
|
-
"@remotion/example-videos": "4.0.
|
|
42
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
41
|
+
"@remotion/example-videos": "4.0.375",
|
|
42
|
+
"@remotion/eslint-config-internal": "4.0.375",
|
|
43
43
|
"eslint": "9.19.0",
|
|
44
44
|
"@types/node": "20.12.14"
|
|
45
45
|
},
|
|
46
46
|
"optionalDependencies": {
|
|
47
|
-
"@remotion/compositor-darwin-arm64": "4.0.
|
|
48
|
-
"@remotion/compositor-darwin-x64": "4.0.
|
|
49
|
-
"@remotion/compositor-linux-arm64-gnu": "4.0.
|
|
50
|
-
"@remotion/compositor-linux-arm64-musl": "4.0.
|
|
51
|
-
"@remotion/compositor-linux-x64-gnu": "4.0.
|
|
52
|
-
"@remotion/compositor-linux-x64-musl": "4.0.
|
|
53
|
-
"@remotion/compositor-win32-x64-msvc": "4.0.
|
|
47
|
+
"@remotion/compositor-darwin-arm64": "4.0.375",
|
|
48
|
+
"@remotion/compositor-darwin-x64": "4.0.375",
|
|
49
|
+
"@remotion/compositor-linux-arm64-gnu": "4.0.375",
|
|
50
|
+
"@remotion/compositor-linux-arm64-musl": "4.0.375",
|
|
51
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.375",
|
|
52
|
+
"@remotion/compositor-linux-x64-musl": "4.0.375",
|
|
53
|
+
"@remotion/compositor-win32-x64-msvc": "4.0.375"
|
|
54
54
|
},
|
|
55
55
|
"keywords": [
|
|
56
56
|
"remotion",
|