ytd / app.py
aiqcamp's picture
Update app.py
cc9de78 verified
raw
history blame
1.62 kB
import streamlit as st
from pytube import YouTube
class YouTubeDownloader:
@staticmethod
def run():
st.header("์œ ํŠœ๋ธŒ(Youtube) ์˜์ƒ URL๋กœ ๋‹ค์šด๋กœ๋“œ")
url = st.text_input("Enter YouTube URL to download:")
if url:
YouTubeDownloader.validate_url(url)
with st.expander("preview video"):
st.video(url)
if st.button("Download"):
YouTubeDownloader.cleanup()
file_ = YouTubeDownloader.download_video(url)
st.video(file_)
YouTubeDownloader.helper_message()
st.markdown("https://github.com/HelpingAI))")
@staticmethod
def download_video(url):
with st.spinner("Downloading..."):
local_file = (
YouTube(url)
.streams.filter(progressive=True, file_extension="mp4")
.first()
.download()
)
st.success("Downloaded")
return local_file
@staticmethod
def validate_url(url):
import validators
if not validators.url(url):
st.error("URL์ด ์ •์ƒ์ ์ด์ง€ ์•Š์Šต๋‹ˆ๋‹ค.")
st.stop()
@classmethod
def cleanup(cls):
import pathlib
import glob
junks = glob.glob("*.mp4")
for junk in junks:
pathlib.Path(junk).unlink()
@classmethod
def helper_message(cls):
st.write(
"์˜์ƒ ํ™”๋ฉด ์šฐ์ธก ํ•˜๋‹จ ... ๋ฒ„ํŠผ์„ ํด๋ฆญํ•˜๋ฉด ๋‹ค์šด๋กœ๋“œ ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค."
)
if __name__ == "__main__":
YouTubeDownloader.run()