ExtractWAV fixed

This commit is contained in:
n1073645 2020-01-06 12:32:14 +00:00
parent ace8121d0e
commit d9b7fe2bb9
1 changed files with 1 additions and 1 deletions

View File

@ -2972,7 +2972,7 @@ export function extractWAV(bytes, offset) {
stream.moveTo(4);
// Move to file size.
stream.moveTo(stream.readInt(4, "le"));
stream.moveTo(stream.readInt(4, "le") + 8);
return stream.carve();
}