Geek7 commited on
Commit
b8b8d7d
·
1 Parent(s): 44c01cc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -23,8 +23,8 @@ st.markdown(hide_streamlit_style, unsafe_allow_html=True)
23
  class YouTubeDownloader:
24
  @staticmethod
25
  def run():
26
- st.header("YouTube Video Downloader")
27
- url = st.text_input("Enter YouTube URL to download:")
28
  start_button = st.button("Start Download")
29
 
30
  if start_button:
@@ -37,7 +37,7 @@ class YouTubeDownloader:
37
  st.video(file_)
38
  YouTubeDownloader.helper_message()
39
 
40
- st.markdown("YouTube Video Download Help")
41
 
42
  @staticmethod
43
  def download_video(url):
@@ -71,7 +71,7 @@ class YouTubeDownloader:
71
  @classmethod
72
  def helper_message(cls):
73
  st.write(
74
- "> To save the video to the local computer, "
75
  "click the vertical ... icon (aka hamburger button) in the bottom-right corner (in the video above) and click download."
76
  )
77
 
 
23
  class YouTubeDownloader:
24
  @staticmethod
25
  def run():
26
+ st.header("")
27
+ url = st.text_input("Enter URL")
28
  start_button = st.button("Start Download")
29
 
30
  if start_button:
 
37
  st.video(file_)
38
  YouTubeDownloader.helper_message()
39
 
40
+ st.markdown("")
41
 
42
  @staticmethod
43
  def download_video(url):
 
71
  @classmethod
72
  def helper_message(cls):
73
  st.write(
74
+ "> To save to the local computer, "
75
  "click the vertical ... icon (aka hamburger button) in the bottom-right corner (in the video above) and click download."
76
  )
77