ffmpegwasm / ffmpeg.wasm

FFmpeg for browser, powered by WebAssembly
https://ffmpegwasm.netlify.app
MIT License
14.19k stars 831 forks source link

404 - Cannot find "/dist/esm/ffmpeg-core.worker.js" in @ffmpeg/core@0.12.4 #640

Closed diegoddox closed 9 months ago

diegoddox commented 10 months ago

Describe the bug When trying to follow the example at https://ffmpegwasm.netlify.app/docs/getting-started/usage for the multi-threat, I'm getting a 440 on https://unpkg.com/@ffmpeg/core@0.12.4/dist/esm/ffmpeg-core.worker.js

Btw, thanks for the awesome work done here 🙏

mho22 commented 9 months ago

@diegoddox You probably forgot to add core-mt@0.12.4 instead of core@0.12.4 :

https://unpkg.com/@ffmpeg/core-mt@0.12.4/dist/esm/ffmpeg-core.worker.js

diegoddox commented 9 months ago

Thanks @mho22