scandoc-ai-components 0.0.59 → 0.0.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +0 -10
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -11405,16 +11405,6 @@ class ExtractorVideo {
|
|
|
11405
11405
|
await this.video.play().catch(e => {
|
|
11406
11406
|
console.warn(`Error on video play: ${e}`);
|
|
11407
11407
|
});
|
|
11408
|
-
setTimeout(async () => {
|
|
11409
|
-
const margins = await this.getCameraMargins();
|
|
11410
|
-
const rectangle = document.querySelector('.desktopRectangle');
|
|
11411
|
-
if (rectangle) {
|
|
11412
|
-
rectangle.style.top = `${margins.topPct * 100}%`;
|
|
11413
|
-
rectangle.style.bottom = `${margins.bottomPct * 100}%`;
|
|
11414
|
-
rectangle.style.left = `${margins.leftPct * 100}%`;
|
|
11415
|
-
rectangle.style.right = `${margins.rightPct * 100}%`;
|
|
11416
|
-
}
|
|
11417
|
-
}, 500);
|
|
11418
11408
|
this.scanStartTime = Date.now(); // Reset timer
|
|
11419
11409
|
setTimeout(() => this.analyzeVideoStream(), ExtractorVideo.FREQUENCY_MS);
|
|
11420
11410
|
this.showMessage("Starting scanning");
|