Update app.py
Browse files
app.py
CHANGED
|
@@ -190,7 +190,10 @@ try:
|
|
| 190 |
soup = BeautifulSoup(a.content, 'lxml')
|
| 191 |
video_url = str(soup).split('<source src="')[1].split('" ')[0]
|
| 192 |
# Share the video through Streamlit
|
| 193 |
-
st.video(video_url)
|
|
|
|
|
|
|
|
|
|
| 194 |
|
| 195 |
except AttributeError:
|
| 196 |
st.write("Select Row to Display Video")
|
|
|
|
| 190 |
soup = BeautifulSoup(a.content, 'lxml')
|
| 191 |
video_url = str(soup).split('<source src="')[1].split('" ')[0]
|
| 192 |
# Share the video through Streamlit
|
| 193 |
+
#st.video(video_url)
|
| 194 |
+
st.markdown(f'[Link to Video]({video_url})')
|
| 195 |
+
|
| 196 |
+
#st.write("Select Row to Display Video")
|
| 197 |
|
| 198 |
except AttributeError:
|
| 199 |
st.write("Select Row to Display Video")
|