1
Fork 0

add cpu warning

This commit is contained in:
ashley 2024-09-07 23:56:41 +00:00
parent fdb2c1d12e
commit b25841a667

View file

@ -332,9 +332,19 @@ loopOption.addEventListener("click", function() {
});
speedOption.addEventListener("click", function() {
var currentSpeed = video.playbackRate;
var newSpeed = getNextSpeed(currentSpeed);
if (navigator.hardwareConcurrency < 3) {
var userChoice = confirm(
"Your system has less than 3 CPU cores ;_; Increasing the video speed will CPU usage and affect performance - Do u want to continue?"
);
if (!userChoice) {
return;
}
}
video.playbackRate = newSpeed;
document.getElementById("aud").playbackRate = newSpeed;
speedOption.innerHTML = "<i class='fa-light fa-gauge'></i> Speed: " + newSpeed.toFixed(2) + "x";