bypassed browser fingerprinting

This commit is contained in:
Quentin Roussel
2024-08-18 18:53:35 +08:00
parent abaf134c28
commit b189cd2351
6 changed files with 59 additions and 18 deletions

View File

@@ -6,7 +6,7 @@ const IMAGE_COUNT = 5;
initImages(IMAGE_COUNT).then(() => {
console.log('Downloaded initial images successfully');
createVideo().then(() => {
console.log('Generated final images successfully');
console.log('Generated video successfully');
});
});
@@ -14,5 +14,8 @@ initImages(IMAGE_COUNT).then(() => {
setInterval(() => {
updateImages(IMAGE_COUNT).then(() => {
console.log('Updated images successfully');
createVideo().then(() => {
console.log('Regenerated video successfully');
});
});
}, 5 * 60 * 1000);