web/libav: shrink buffer _after_ ffmpeg is done running

This commit is contained in:
dumbmoron 2024-08-13 00:23:13 +00:00
parent e084092f37
commit e79f466c5f
No known key found for this signature in database

View file

@ -63,12 +63,6 @@ export default class LibAVWrapper {
writtenData.set(data, pos);
};
// if we didn't need as much space as we allocated for some reason,
// shrink the buffer so that we don't inflate the file with zeros
if (writtenData.length > actualSize) {
writtenData = writtenData.slice(0, actualSize);
}
await this.libav.ffmpeg([
'-nostdin', '-y',
'-threads', this.concurrency.toString(),
@ -80,6 +74,12 @@ export default class LibAVWrapper {
await this.libav.unlink(outputName);
await this.libav.unlinkreadaheadfile("input");
// if we didn't need as much space as we allocated for some reason,
// shrink the buffer so that we don't inflate the file with zeros
if (writtenData.length > actualSize) {
writtenData = writtenData.slice(0, actualSize);
}
const renderBlob = new Blob(
[ writtenData ],
{ type: output.type }