We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41ed417 commit 098e2e2Copy full SHA for 098e2e2
README.md
@@ -53,6 +53,7 @@ const worker = createWorker();
53
await worker.transcode('test.avi', 'test.mp4');
54
const { data } = await worker.read('test.mp4');
55
fs.writeFileSync('./test.mp4', data);
56
+ await worker.terminate();
57
})();
58
```
59
@@ -74,6 +75,10 @@ Or, using a script tag in the browser:
74
75
</script>
76
77
78
+## Examples
79
+
80
+- With React: https://github.com/ffmpegjs/react-app
81
82
## Documentation
83
84
- [API](https://github.com/ffmpegjs/ffmpeg.js/blob/master/docs/api.md)
0 commit comments