Posts

Showing posts from January, 2024

I have created Ai voice

 From 3 months since now I have found the loopholes of Ai voiceover websites and automated them using my Python HID automation skills. Here are some code I think I have done with my best:  These automates the process of video and voice creation with Ai. def getPos ( picName , pressAnything = "" ):         from time import sleep     from pyautogui import locateCenterOnScreen , press , scroll     position = ''     picNameFinal = ''     if type ( picName ) == list :         picNameFinal = picName [ 0 ]     else :         picNameFinal = picName     while True :                       try :             position = locateCenterOnScreen ( picNameFinal + ".png" )                         break         except :             if type ( picName ) == list :                 print ( "Tried name: " + picNameFinal + ".png   Attempt:" + str ( picName . index ( picNameFinal )))                                       if le