ffmpegwasm / ffmpegwasm/ffmpeg.wasm
Uncaught ReferenceError: createFFmpegCore is not defined
未關閉
- 主要語言
- C
- 星號
- 17.8k
- 分支
- 1.1k
- PR 合併指標
- 30 天內沒有已合併 PR
描述
As you can see the
```
import React from "react";
import { createFFmpeg, fetchFile } from "@ffmpeg/ffmpeg";
const ffmpeg = createFFmpeg({
log: true,
});
function App() {
const [ready, setReady] = React.useState(false);
const load = async () => {
await ffmpeg.load();
setReady(true);
};
React.useEffect(() => {
load();
}, []);
.
.
.
```
I got a Bad memory error too!
How to fix this?
貢獻指南
評估
這個 Issue 還沒有評估資料。