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
// "fix-webm-metainfo": "1.0.8" // "electron": "19.0.6" console.warn('fixWebmFile', filePath) const fs = await import('fs-extra') let buffer = await fs.readFile(filePath) const fixWebm = await import('fix-webm-metainfo').then(js => js.default) // https://stackoverflow.com/questions/61731218/conversion-of-buffer-data-to-blob-in-nodejs let blob = new Blob([buffer], { type: 'video/webm;codecs=h264' }) buffer = null blob = await fixWebm(blob) buffer = Buffer.from(await blob.arrayBuffer()) blob = null await fs.writeFile(filePath + '-fixed.webm', buffer) console.warn('fixWebmFile end')
the -fixed.webm file also not have duration on video player. help, thanks.
The text was updated successfully, but these errors were encountered:
the fixed.webm file can play well, but no video duration
Sorry, something went wrong.
No branches or pull requests
the -fixed.webm file also not have duration on video player.
help, thanks.
The text was updated successfully, but these errors were encountered: