Commit ·
09c22f3
1
Parent(s): 87738ea
update func extract_video_id
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -31,7 +31,7 @@ except ImportError as e:
|
|
| 31 |
st.stop()
|
| 32 |
|
| 33 |
|
| 34 |
-
def extract_video_id(url_or_id: str)
|
| 35 |
"""
|
| 36 |
Tries to get the YouTube video ID from different common URL types.
|
| 37 |
Also handles if the input is just the ID itself.
|
|
|
|
| 31 |
st.stop()
|
| 32 |
|
| 33 |
|
| 34 |
+
def extract_video_id(url_or_id: str):
|
| 35 |
"""
|
| 36 |
Tries to get the YouTube video ID from different common URL types.
|
| 37 |
Also handles if the input is just the ID itself.
|