-
-
Notifications
You must be signed in to change notification settings - Fork 886
New issue
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
When executing await ffmpeg.load({...url}), the code doesn't continue to execute further. #815
Comments
Did you find a workaround - or a solution? I have the same issue right now with 0.12.10. |
@bestycw Did you find any solution? |
have the same issue too, i am getting this error: |
if you are using vite adding ffmpeg in the exclude array in the optimizedeps filed in vite.config file solved the issue. import path from "path"; |
thanks, that worked |
Yeah - I've seen that suggestion floating around. But I have that and still doesn't change the issue in Safari. Is there anything else going on here that maybe I can check?
|
` if (!crossOriginIsolated) {
throw new Error('SharedArrayBuffer is not available. Please enable cross-origin isolation.')
}
this.ffmpeg.on('log', e => {
console.log(e.message)
})
this.ffmpeg.on('progress', e => {
console.log(e.progress)
})
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected]/dist/esm'
}`
console.log('FFmpeg loaded successfully')
does not exec。THE version ffmpeg
"@ffmpeg/ffmpeg": "^0.12.7", "@ffmpeg/util": "^0.12.1", "@ffmpeg/core": "^0.12.4"
The text was updated successfully, but these errors were encountered: