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
I am using the following code:
import { FFprobeWorker } from "ffprobe-wasm"; const worker = new FFprobeWorker(); function Home() { const handleChange = async (e) => { const file = e.target.files[0]; const fileInfo = await worker.getFileInfo(file); console.log(fileInfo); }; return <input type="file" onChange={handleChange} />; } export default Home;
and when I select a file I get this error: Error: table index is out of bounds
The text was updated successfully, but these errors were encountered:
@martiserra99 Maybe you're trying to upload a file with an unsupported encoding type. I don't think this wasm supports .avi, for one.
.avi,
Sorry, something went wrong.
No branches or pull requests
I am using the following code:
and when I select a file I get this error:
Error: table index is out of bounds
The text was updated successfully, but these errors were encountered: