Spaces:
Sleeping
Sleeping
enhancments on the home page
Browse files- src/streamlit_app.py +10 -5
src/streamlit_app.py
CHANGED
|
@@ -24,14 +24,19 @@ if page == "Home":
|
|
| 24 |
st.title("ποΈ Accentometer")
|
| 25 |
|
| 26 |
# β
Example video links
|
| 27 |
-
st.markdown("###
|
| 28 |
|
| 29 |
-
st.text("Australian:
|
| 30 |
-
st.text("British:
|
| 31 |
st.text("American: https://docs.google.com/uc?export=download&id=1k1wfSxmQ-ZbYCKNZrb0aF8xfM6JWEfKQ")
|
| 32 |
|
| 33 |
-
st.markdown(
|
| 34 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
st.write("Paste a direct public MP4 video URL to **classify the English accent, get transcript**.")
|
| 36 |
|
| 37 |
video_url = st.text_input("Direct Video URL (MP4 only):")
|
|
|
|
| 24 |
st.title("ποΈ Accentometer")
|
| 25 |
|
| 26 |
# β
Example video links
|
| 27 |
+
st.markdown("### Try with these example MP4 links:")
|
| 28 |
|
| 29 |
+
st.text("Australian: https://docs.google.com/uc?export=download&id=12dKoO-jgWgjor_aQpovbtwOulMQBEEps")
|
| 30 |
+
st.text("British: https://docs.google.com/uc?export=download&id=10aiY_0dnsWXqhxeNL54n5LYe6l4XquR8")
|
| 31 |
st.text("American: https://docs.google.com/uc?export=download&id=1k1wfSxmQ-ZbYCKNZrb0aF8xfM6JWEfKQ")
|
| 32 |
|
| 33 |
+
st.markdown(
|
| 34 |
+
"""
|
| 35 |
+
π **Instructions**: Copy one of the above MP4 URLs and paste it into the field below, then click **Analyze** to detect the accent, and get a transcript.
|
| 36 |
+
"""
|
| 37 |
+
)
|
| 38 |
+
|
| 39 |
+
st.markdown(""" --- """)
|
| 40 |
st.write("Paste a direct public MP4 video URL to **classify the English accent, get transcript**.")
|
| 41 |
|
| 42 |
video_url = st.text_input("Direct Video URL (MP4 only):")
|