web/libav: shrink buffer _after_ ffmpeg is done running
This commit is contained in:
parent
e084092f37
commit
e79f466c5f
1 changed files with 6 additions and 6 deletions
|
@ -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 }
|
||||
|
|
Loading…
Reference in a new issue