ffmpegwasm / ffmpegwasm/ffmpeg.wasm

Uncaught ReferenceError: createFFmpegCore is not defined

Open
#262 32 comments 24 reactions 0 assignees View on GitHub
Dominant language
C
Stars
17.8k
Forks
1.1k
PR merge metrics
No merged PRs in 30d

Description

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?

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.