Update app.py
Browse files
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("
|
| 27 |
-
url = st.text_input("Enter
|
| 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("
|
| 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
|
| 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 |
|