import streamlit as st import whisper from sklearn.feature_extraction.text import TfidfVectorizer from sklearn.metrics.pairwise import cosine_similarity st.set_page_config( page_title="Sing It Forward App", page_icon="🎵") st.markdown( """ """, unsafe_allow_html=True ) background_image_url = "https://static.vecteezy.com/system/resources/previews/020/333/164/non_2x/stephen-foster-memorial-day-illustration-with-copy-space-area-and-blue-background-suitable-to-use-on-memorial-day-event-vector.jpg" st.markdown( f""" """, unsafe_allow_html=True ) st.markdown("

Sing It Forward App🎵

", unsafe_allow_html=True) description = """
Welcome to Sing It Forward App!

Get ready to test your singing skills and memory! First, listen carefully to the first part of the song, then it’s your turn to shine. Record yourself singing the next 15 seconds on your own, matching the lyrics and rhythm perfectly. Think you’ve got what it takes to keep the music going? Let’s see if you can hit the right notes and showcase your talent! Unleash your inner star and take the challenge!

📌For any questions or contact: **Name:** Sahand Khorsandi **Email:** sahand.kh78@yahoo.com""" st.markdown(description, unsafe_allow_html=True) st.write('------') def cosine_sim(text1, text2): vectorizer = TfidfVectorizer().fit_transform([text1, text2]) vectors = vectorizer.toarray() return cosine_similarity(vectors)[0, 1] model = whisper.load_model("base") st.write("Listen to music since you have to record 15seconds after that") st.audio("titanic.mp3") audio_value = st.experimental_audio_input("Sing Rest of music:🎙️") lyrics = "Far across the distance And spaces between us You have come to show you go on" if audio_value: with open("user_sing.mp3", "wb") as f: f.write(audio_value.getbuffer()) user_lyrics = model.transcribe("user_sing.mp3")["text"] st.write(user_lyrics) similarity_score = cosine_sim(lyrics, user_lyrics) if similarity_score > 0.85: st.success('Awsome! You are doing great', icon="✅") else: st.error('Awful! Try harder next time', icon="🚨")