1
0
mirror of https://github.com/snobu/destreamer.git synced 2026-02-28 00:58:24 +00:00

Fix typo chuncks -> chunks

This commit is contained in:
snobu
2020-04-11 16:19:10 +03:00
parent 9faa0c4846
commit 7da49197b3
2 changed files with 4 additions and 4 deletions

View File

@@ -240,9 +240,9 @@ async function downloadVideo(videoUrls: string[], outputDirectory: string, sessi
});
})
.on('progress', progress => {
const currentChuncks = ffmpegTimemarkToChunk(progress.timemark);
const currentChunks = ffmpegTimemarkToChunk(progress.timemark);
pbar.update(currentChuncks, {
pbar.update(currentChunks, {
speed: progress.currentKbps
});
})