Comparing version 4.0.221 to 4.0.222
@@ -49,2 +49,3 @@ import './_check-rsc.js'; | ||
remotion_isStudio: boolean; | ||
remotion_isReadOnlyStudio: boolean; | ||
remotion_isBuilding: undefined | (() => void); | ||
@@ -51,0 +52,0 @@ remotion_finishedBuilding: undefined | (() => void); |
@@ -69,2 +69,8 @@ "use strict"; | ||
const staticFile = (path) => { | ||
if (path === null) { | ||
throw new TypeError('null was passed to staticFile()'); | ||
} | ||
if (typeof path === 'undefined') { | ||
throw new TypeError('undefined was passed to staticFile()'); | ||
} | ||
if (path.startsWith('http://') || path.startsWith('https://')) { | ||
@@ -71,0 +77,0 @@ throw new TypeError(`staticFile() does not support remote URLs - got "${path}". Instead, pass the URL without wrapping it in staticFile(). See: https://remotion.dev/docs/staticfile-remote-urls`); |
@@ -6,2 +6,2 @@ /** | ||
*/ | ||
export declare const VERSION = "4.0.221"; | ||
export declare const VERSION = "4.0.222"; |
@@ -10,2 +10,2 @@ "use strict"; | ||
*/ | ||
exports.VERSION = '4.0.221'; | ||
exports.VERSION = '4.0.222'; |
@@ -206,4 +206,4 @@ "use strict"; | ||
} | ||
return (0, jsx_runtime_1.jsx)("video", { ref: videoRef, ...props }); | ||
return (0, jsx_runtime_1.jsx)("video", { ref: videoRef, disableRemotePlayback: true, ...props }); | ||
}; | ||
exports.VideoForRendering = (0, react_1.forwardRef)(VideoForRenderingForwardFunction); |
@@ -6,3 +6,3 @@ { | ||
"name": "remotion", | ||
"version": "4.0.221", | ||
"version": "4.0.222", | ||
"description": "Make videos programmatically", | ||
@@ -9,0 +9,0 @@ "main": "dist/cjs/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
662240
16779