You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I created an app (https://vidstitch.ieatbeans.com) that concats videos using the demuxer, and it works if the total file size is less than 2gb. Anything over that and it fails with Array buffer allocation error. I think the WASM limit is 4gb, so maybe its 2gb for me because the input files and the output file have to both exist in the FS?
Also, I think this uses memory (RAM) for the virtual FS, would there be a way to do this in the disk instead that bypasses that limit? Im fine if its slower, I just need more than 2gb!
I tried dynamically deleting and creating the input files as FFmpeg works, but it looks like once I start the exec it won't do any FS operations until it finishes, even using the mt version.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I created an app (https://vidstitch.ieatbeans.com) that concats videos using the demuxer, and it works if the total file size is less than 2gb. Anything over that and it fails with
Array buffer allocation error
. I think the WASM limit is 4gb, so maybe its 2gb for me because the input files and the output file have to both exist in the FS?Also, I think this uses memory (RAM) for the virtual FS, would there be a way to do this in the disk instead that bypasses that limit? Im fine if its slower, I just need more than 2gb!
I tried dynamically deleting and creating the input files as FFmpeg works, but it looks like once I start the
exec
it won't do any FS operations until it finishes, even using themt
version.Beta Was this translation helpful? Give feedback.
All reactions