From 3f9f072ab7efe2901d57cd31eee6b80f06870805 Mon Sep 17 00:00:00 2001 From: mrjvs Date: Sat, 21 Oct 2023 05:48:56 +0200 Subject: [PATCH] add 50 temporary sections to thumbnail scraper --- src/components/player/internals/ThumbnailScraper.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/components/player/internals/ThumbnailScraper.tsx b/src/components/player/internals/ThumbnailScraper.tsx index 84b974c3..51eb25c4 100644 --- a/src/components/player/internals/ThumbnailScraper.tsx +++ b/src/components/player/internals/ThumbnailScraper.tsx @@ -88,7 +88,10 @@ class ThumnbnailWorker { // TODO make a queue based on refinement algorithm - const queue = [0.5, 0, 1, 0.25, 0.75]; + const sections = 50; + const queue = Array(sections + 1) + .fill(0) + .map((_, i) => i / sections); for (let i = 0; i < queue.length; i += 1) { if (this.interrupted) return; await this.takeSnapshot(vid.duration * queue[i]);