mirror of
				https://codeberg.org/ashley/poke
				synced 2025-07-17 16:52:11 +00:00 
			
		
		
		
	add cpu warning
This commit is contained in:
		
							parent
							
								
									fdb2c1d12e
								
							
						
					
					
						commit
						b25841a667
					
				
							
								
								
									
										20
									
								
								css/app.js
									
									
									
									
									
								
							
							
						
						
									
										20
									
								
								css/app.js
									
									
									
									
									
								
							| @ -331,16 +331,26 @@ loopOption.addEventListener("click", function() { | ||||
|     }, 2000); | ||||
| }); | ||||
| 
 | ||||
|  speedOption.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"; | ||||
|         }); | ||||
| }); | ||||
| 
 | ||||
|         function getNextSpeed(currentSpeed) { | ||||
| function getNextSpeed(currentSpeed) { | ||||
|     if (currentSpeed === 2) { | ||||
|         return 0.25; | ||||
|     } else if (currentSpeed === 0.25) { | ||||
| @ -352,7 +362,7 @@ loopOption.addEventListener("click", function() { | ||||
|     } else { | ||||
|         return 2; | ||||
|     } | ||||
|         } | ||||
| } | ||||
| 
 | ||||
| const GoogleTranslateEndpoint = "https://translate.google.com/_/TranslateWebserverUi/data/batchexecute?rpcids=MkEWBc&rt=c" | ||||
| // @license-end
 | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user
	 ashley
						ashley