We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import { FFmpeg } from '@ffmpeg/ffmpeg'; import { fetchFile } from '@ffmpeg/util';
The text was updated successfully, but these errors were encountered:
So I realized it has to run client side only. I'm using svelte. Here's what I did:
let FFmpeg; let fetchFile; onMount(async () => { fetchFile = (await import('@ffmpeg/util')).fetchFile; FFmpeg = (await import('@ffmpeg/ffmpeg')).FFmpeg; ffmpeg = new FFmpeg({ log: true }); });
The problem is something is requesting /worker.js which obviously isn't on my root static folder...so it just gets a 404
/worker.js
Where is this worker.js file coming from and why is it not loading from the package?
worker.js
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: