Comparing version 1.3.0-alpha.d74af5dc to 1.3.0-alpha.e4586da5
export declare const setQuality: (q: number | undefined) => void; | ||
export declare const getQuality: () => number; | ||
export declare const getQuality: () => number | undefined; | ||
//# sourceMappingURL=quality.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.getQuality = exports.setQuality = void 0; | ||
const defaultValue = 80; | ||
const defaultValue = undefined; | ||
let quality = defaultValue; | ||
@@ -6,0 +6,0 @@ const setQuality = (q) => { |
@@ -17,9 +17,9 @@ /// <reference types="react" /> | ||
getPixelFormat: () => "yuv420p" | "yuv422p" | "yuv444p" | "yuv420p10le" | "yuv422p10le" | "yuv444p10le"; | ||
getConcurrency: () => number | null; | ||
getConcurrency: () => import("./config/concurrency").Concurrency; | ||
getShouldOverwrite: () => boolean; | ||
getFormat: () => "png-sequence" | "mp4"; | ||
getWebpackOverrideFn: () => WebpackOverrideFn; | ||
getQuality: () => number; | ||
getQuality: () => number | undefined; | ||
}; | ||
export type { TComposition, Timeline, TCompMetadata, TSequence, WebpackOverrideFn, }; | ||
//# sourceMappingURL=internals.d.ts.map |
@@ -61,3 +61,3 @@ "use strict"; | ||
if (!videoRef.current) { | ||
throw Error('No vide ref'); | ||
throw Error('No video ref'); | ||
} | ||
@@ -64,0 +64,0 @@ if (videoRef.current.readyState === 4) { |
{ | ||
"name": "remotion", | ||
"version": "1.3.0-alpha.d74af5dc", | ||
"version": "1.3.0-alpha.e4586da5", | ||
"description": "Render videos in React", | ||
@@ -5,0 +5,0 @@ "main": "dist/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
144827