nesticot commited on
Commit
a0660fc
·
verified ·
1 Parent(s): 9df3bf1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
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")