Spaces:
Sleeping
Sleeping
File size: 546 Bytes
f683bc9 51a2991 fcfe439 51a2991 fcfe439 51a2991 fcfe439 51a2991 fcfe439 51a2991 f683bc9 51a2991 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | import streamlit as st
import yt_dlp
'Youtube Song Player'
url = st.text_input('youtube','https://www.youtube.com/watch?v=9Zj0JOHJR-s')
ydl_opts = {
'format': 'bestaudio/best', # Select the best audio str
# Tell yt-dlp to write the output to our in-memory buffer
'quiet': True,
'noprogress': True,
'nocheckcertificate': True
}
info = yt_dlp.YoutubeDL(ydl_opts).extract_info(url, download=False)
info['fulltitle'] , info['duration_string']
st.image(info['thumbnail'])
st.audio(info['url']) |