Update app.py
Browse files
app.py
CHANGED
@@ -63,8 +63,8 @@ def transcribe(audio_file, model_size):
|
|
63 |
return "\n".join(transcription_with_timestamps)
|
64 |
|
65 |
# Example Streamlit UI setup to use transcribe function
|
66 |
-
st.title("Whisper
|
67 |
-
st.write("
|
68 |
|
69 |
audio_file = st.file_uploader("π΅ Upload Audio or Video", type=['wav', 'mp3', 'ogg', 'mp4', 'avi'])
|
70 |
model_size = st.selectbox("π Model Size", ["base", "small", "medium", "large", "large-v2", "large-v3"])
|
|
|
63 |
return "\n".join(transcription_with_timestamps)
|
64 |
|
65 |
# Example Streamlit UI setup to use transcribe function
|
66 |
+
st.title("Whisper")
|
67 |
+
st.write("For API use please visit [this space](https://huggingface.co/spaces/Lenylvt/Whisper-API)")
|
68 |
|
69 |
audio_file = st.file_uploader("π΅ Upload Audio or Video", type=['wav', 'mp3', 'ogg', 'mp4', 'avi'])
|
70 |
model_size = st.selectbox("π Model Size", ["base", "small", "medium", "large", "large-v2", "large-v3"])
|