@remotion/media 4.0.417 → 4.0.418
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 +2 -7
- package/package.json +3 -3
package/dist/esm/index.mjs
CHANGED
|
@@ -3585,15 +3585,10 @@ var emitReadiness = (channel) => {
|
|
|
3585
3585
|
channel.postMessage({
|
|
3586
3586
|
type: "main-tab-ready"
|
|
3587
3587
|
});
|
|
3588
|
-
|
|
3589
|
-
const interval = setInterval(() => {
|
|
3588
|
+
setInterval(() => {
|
|
3590
3589
|
channel.postMessage({
|
|
3591
3590
|
type: "main-tab-ready"
|
|
3592
3591
|
});
|
|
3593
|
-
times++;
|
|
3594
|
-
if (times > 30) {
|
|
3595
|
-
clearInterval(interval);
|
|
3596
|
-
}
|
|
3597
3592
|
}, 300);
|
|
3598
3593
|
};
|
|
3599
3594
|
var addBroadcastChannelListener = () => {
|
|
@@ -4540,7 +4535,7 @@ var VideoForRendering = ({
|
|
|
4540
4535
|
}
|
|
4541
4536
|
const timestamp = frame / fps;
|
|
4542
4537
|
const durationInSeconds = 1 / fps;
|
|
4543
|
-
const newHandle = delayRender(`Extracting frame at time ${timestamp}`, {
|
|
4538
|
+
const newHandle = delayRender(`Extracting frame at time ${timestamp} from ${src}`, {
|
|
4544
4539
|
retries: delayRenderRetries ?? undefined,
|
|
4545
4540
|
timeoutInMilliseconds: delayRenderTimeoutInMilliseconds ?? undefined
|
|
4546
4541
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/media",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.418",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"module": "dist/esm/index.mjs",
|
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"mediabunny": "1.29.0",
|
|
26
|
-
"remotion": "4.0.
|
|
26
|
+
"remotion": "4.0.418"
|
|
27
27
|
},
|
|
28
28
|
"peerDependencies": {
|
|
29
29
|
"react": ">=16.8.0",
|
|
30
30
|
"react-dom": ">=16.8.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@remotion/eslint-config-internal": "4.0.
|
|
33
|
+
"@remotion/eslint-config-internal": "4.0.418",
|
|
34
34
|
"@vitest/browser-webdriverio": "4.0.9",
|
|
35
35
|
"eslint": "9.19.0",
|
|
36
36
|
"react": "19.2.3",
|