Update README.md

This commit is contained in:
Claas Augner 2019-10-30 19:30:33 +01:00 committed by GitHub
parent 1008422c90
commit c55c8ff35a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -41,7 +41,7 @@ const worker = createWorker();
(async () => {
await worker.load();
const { data } = await worker.transcode('./test.avi', 'mp4');
fs.wrieFileSync('./test.mp4', data);
fs.writeFileSync('./test.mp4', data);
})();
```