From 372a474cf67866482443ea45a1e593652f016616 Mon Sep 17 00:00:00 2001 From: Saifeddine ALOUI Date: Tue, 26 Nov 2024 00:52:15 +0100 Subject: [PATCH] updated fuinction call --- lollms/functions/music_gen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lollms/functions/music_gen.py b/lollms/functions/music_gen.py index 4d6cad6..9b66355 100644 --- a/lollms/functions/music_gen.py +++ b/lollms/functions/music_gen.py @@ -27,11 +27,11 @@ def open_and_fill_udio(song_description: str, lyrics: str) -> str: try: # Open the specified webpage webbrowser.open('https://udio.com') - time.sleep(4) # Wait for the page to load + time.sleep(5) # Wait for the page to load # Click the input field near the "Create" button # Adjust the x, y coordinates based on your screen resolution - pyautogui.click(x=500, y=110) + pyautogui.click(x=500, y=120) # Fill the song description field pyautogui.write(song_description)