File size: 732 Bytes
a266683 08d678f a266683 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
import streamlit as st
from PIL import Image
import time
# Title of the Streamlit app
st.title("Streamlit Testing App")
# Write a description
st.write("This app tests various Streamlit elements like file uploader, image display, and audio playback.")
# File uploader for image
uploaded_file = st.file_uploader("Upload an image", type=["png", "jpg", "jpeg"])
if uploaded_file is not None:
# Display the uploaded image
image = Image.open(uploaded_file)
st.image(image, caption="Uploaded Image", use_container_width=True)
# Display an audio file with a spinner effect
st.write("Playing audio...")
with st.spinner("Loading audio..."):
time.sleep(2) # Simulating a short delay
st.audio("kids_playing_audio.wav") |