Matias Macias Gomez commited on
Commit
4677866
·
1 Parent(s): 20f2c77

UX update

Browse files
Files changed (1) hide show
  1. streamlit_app.py +1 -1
streamlit_app.py CHANGED
@@ -64,7 +64,7 @@ st.text_input("Video URL", key="url", placeholder="Enter Video URL and Hit Enter
64
 
65
 
66
  if st.session_state["url"]:
67
- download = st.button("Download")
68
  if download:
69
  video_path = download_video(st.session_state["url"], save_path=os.path.join(".", "data"))
70
  st.session_state["videos"] = video_path
 
64
 
65
 
66
  if st.session_state["url"]:
67
+ download = st.button("Load Video")
68
  if download:
69
  video_path = download_video(st.session_state["url"], save_path=os.path.join(".", "data"))
70
  st.session_state["videos"] = video_path