SVT-AV1 & TailwindCSS
Build / build (push) Failing after 1m40s

This commit is contained in:
2025-10-01 21:06:39 +07:00
parent f1da312b95
commit 958ecdca7d
18 changed files with 829 additions and 146 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
import {
DEFAULT_BITRATE,
type CodecInfo,
type FFmpegParamChangedFunc,
type FFmpegParams,
} from "@/util/ffmpeg";
import { os } from "@neutralinojs/lib";
@@ -12,7 +13,7 @@ const DEFAULT_CRF = 23;
function LibaomOptions(props: {
codec: CodecInfo | undefined;
params: FFmpegParams;
onParamChanged: (key: string, value: any) => void;
onParamChanged: FFmpegParamChangedFunc;
}) {
const [rateControlMode, setRateControlMode] = createSignal("Constant");