Spaces:
Sleeping
Sleeping
File size: 744 Bytes
d296c34 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
import streamlit as st
from moviepy.editor import AudioClip
import tempfile
import os
from st_audiorec import st_audiorec
st.set_page_config(layout="wide", initial_sidebar_state="collapsed")
# Create two columns
col1, col2 = st.columns(2)
# First column containers
with col1:
st.subheader("Audio Recorder")
wav_audio_data = st_audiorec()
st.subheader("LLM answering")
# Add your content here
st.subheader("Movement Analysis")
# Add your content here
# Second column containers
with col2:
st.subheader("Sports Agenda")
# Add your content here
st.subheader("Video Analysis")
video_path = "data/video/temp.mp4"
st.video(video_path)
st.subheader("Graph Displayer")
# Add your content here
|