Created
March 12, 2023 02:27
-
-
Save zacps/e9858a0a8541aefc5c1e1176c8ab3330 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import time | |
import numpy as np | |
from playsound import playsound | |
CREEPY_TEXT = [ | |
"breathing", | |
"can I be your friend", | |
"give me my body back", | |
"just like I thought your not real", | |
"moan", | |
"navy seal", | |
"sponsored by nestle", | |
"why cant I go outside", | |
"never going to give you up", | |
"stop youve violated the law", | |
"can I sleep in your fridge" | |
] | |
def main(): | |
i = 0 | |
while True: | |
delay = np.random.poisson(5) | |
file = np.random.choice(CREEPY_TEXT) | |
playsound(f'voice/{file}.mp3') | |
time.sleep(delay) | |
i += 1 | |
if __name__ == "__main__": | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment