-
Notifications
You must be signed in to change notification settings - Fork 52
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
performance of making a MediaRecorder webm seekable #27
Comments
@rhwu how are you fixing big files? I'm getting an error due to the buffer size Is it possible to make the fix not loading all the file in memory? |
Unfortunately we still don't have a solution. Hopefully someone who is familiar with the format can make some comment on this one. |
How long does |
I have made some modification, instead of create one Buffer, I choose to create a Buffer Slice Array to solve this issue, and published a new npm package named 'fix-webm-metainfo' to support >2GB file. you can have a try |
Hi there,
This is more of a question / feature request.
Your example_seekable.ts works very well. However when the recording is big it will take a long time to process. E.g. I have a 2 and half hours recording of 2.5GB, the tools.makeMetadataSeekable function alone takes around 1 minute to complete.
I'm wondering can this be improved? Specifically, as we know the duration is roughly just the time between recording start and stop. With that, is it possible to just fill that duration information to the metadata of the original file to make it seeable?
Thanks!
The text was updated successfully, but these errors were encountered: