Spaces:
Sleeping
Sleeping
File size: 19,461 Bytes
40f2bca 2aa238a 40f2bca 2aa238a 40f2bca 2aa238a 40f2bca 2aa238a c9132cc 40f2bca 2aa238a c9132cc 2aa238a c9132cc 2aa238a 40f2bca 2aa238a feaf7eb 2aa238a 8b4cd24 2aa238a 8b4cd24 2aa238a 8b4cd24 2aa238a 8b4cd24 feaf7eb 8b4cd24 2aa238a 8b4cd24 feaf7eb 2aa238a feaf7eb 2aa238a 8b4cd24 2aa238a 8b4cd24 2aa238a feaf7eb 2aa238a feaf7eb 2aa238a feaf7eb 2aa238a feaf7eb 2aa238a feaf7eb 2aa238a 40f2bca feaf7eb 2aa238a feaf7eb 2aa238a c9132cc 2aa238a c9132cc 2aa238a c9132cc 2aa238a c9132cc 2aa238a c9132cc 2aa238a c9132cc 2aa238a c9132cc 2aa238a c9132cc 2aa238a c9132cc 2aa238a c9132cc 2aa238a feaf7eb 2aa238a c9132cc 2aa238a c9132cc 2aa238a c9132cc 2aa238a c9132cc 2aa238a feaf7eb 2aa238a c9132cc 2aa238a c9132cc 2aa238a feaf7eb 2aa238a c9132cc 2aa238a c9132cc 2aa238a c9132cc 2aa238a feaf7eb 2aa238a feaf7eb 2aa238a 40f2bca 2aa238a 40f2bca 2aa238a | 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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 | import streamlit as st
import requests
import pandas as pd
import plotly.express as px
import plotly.graph_objects as go
from datetime import datetime
import os
# Page config
st.set_page_config(
page_title="Audio Sentiment Analysis",
page_icon="π€",
layout="wide"
)
# Title
st.title("π€ Audio Sentiment Analysis Dashboard")
st.markdown("Analyze emotions from audio files with timeline visualization")
# Flask API URL
FLASK_URL = os.getenv("FLASK_URL", "http://localhost:5000")
# Create tabs
tab1, tab2 = st.tabs(["π File Analysis", "ποΈ Audio Recording"])
# ============================================
# TAB 1: File Analysis
# ============================================
with tab1:
st.header("π File Analysis")
st.markdown("Upload a pre-recorded audio file for sentiment analysis")
# File selection option
file_option = st.radio(
"Choose audio source:",
options=["π Upload Your File", "π― Try Example File"],
horizontal=True,
help="Select whether to upload your own file or use the example"
)
audio_file = None
file_name = None
# Upload or Example file logic
if file_option == "π Upload Your File":
uploaded_file = st.file_uploader(
"Choose an audio file",
type=["wav", "mp3", "ogg", "flac", "m4a"],
help="Supported formats: WAV, MP3, OGG, FLAC, M4A"
)
if uploaded_file is not None:
audio_file = uploaded_file
file_name = uploaded_file.name
st.success(f"β
File uploaded: {uploaded_file.name}")
else: # Example file
example_path = "input/test.wav"
if os.path.exists(example_path):
audio_file = open(example_path, 'rb')
file_name = "test.wav"
st.info("π Using example audio file: test.wav")
else:
st.warning("β οΈ Example file not found in input/ folder")
# Show analyze button
analyze_btn = st.button("π Analyze Audio", type="primary", width="stretch", disabled=(audio_file is None))
# Initialize session state for results
if 'analysis_results' not in st.session_state:
st.session_state.analysis_results = None
if 'job_id' not in st.session_state:
st.session_state.job_id = None
# Display audio player and file info if file is selected
if audio_file is not None:
# Audio player
st.subheader("π΅ Audio Preview")
st.audio(audio_file)
# File info
with st.expander("π File Information"):
col1, col2, col3 = st.columns(3)
with col1:
st.metric("File Name", file_name)
with col2:
if hasattr(audio_file, 'size'):
st.metric("File Size", f"{audio_file.size / 1024:.2f} KB")
else:
st.metric("File Size", "N/A")
with col3:
if hasattr(audio_file, 'type'):
st.metric("File Type", audio_file.type)
else:
st.metric("File Type", "WAV")
# Analysis Results Section
if analyze_btn and audio_file:
# Upload file to Flask API
try:
# Prepare file for upload
if file_option == "π Upload Your File":
files = {'file': (file_name, audio_file, 'audio/wav')}
else:
# For example file, need to reset file pointer
audio_file.seek(0)
files = {'file': (file_name, audio_file, 'audio/wav')}
# Upload to Flask
with st.spinner("π€ Uploading audio file..."):
upload_response = requests.post(
f"{FLASK_URL}/upload",
files=files
)
if upload_response.status_code == 202:
job_data = upload_response.json()
job_id = job_data['job_id']
st.session_state.job_id = job_id
# Poll for status
progress_bar = st.progress(0)
status_text = st.empty()
import time
max_attempts = 60 # 60 attempts = 2 minutes max
attempt = 0
while attempt < max_attempts:
# Check status
status_response = requests.get(f"{FLASK_URL}/status/{job_id}")
if status_response.status_code == 200:
status_data = status_response.json()
progress = status_data['progress']
message = status_data['message']
status = status_data['status']
# Update progress
progress_bar.progress(progress / 100)
status_text.text(f"βοΈ {message} ({progress}%)")
# Check if completed
if status == "completed":
st.session_state.analysis_results = status_data['results']
progress_bar.progress(100)
status_text.empty()
st.success("β
Analysis Complete!")
break
elif status == "failed":
error_msg = status_data.get('error', 'Unknown error')
st.error(f"β Processing failed: {error_msg}")
progress_bar.empty()
status_text.empty()
break
# Wait before next poll
time.sleep(5)
attempt += 1
if attempt >= max_attempts:
st.error("β±οΈ Processing timeout. Please try again.")
else:
st.error(f"β Upload failed: {upload_response.json().get('error', 'Unknown error')}")
except requests.exceptions.ConnectionError:
st.error("β Could not connect to Flask server. Make sure it's running on port 5000!")
except Exception as e:
st.error(f"β An error occurred: {str(e)}")
# Display results if available
if st.session_state.analysis_results:
# Results layout
st.markdown("---")
st.subheader("π Emotion Analysis Results")
# Get results from session state
results = st.session_state.analysis_results
# Emotion emoji mapping (supports all emotions)
emotion_emoji_map = {
'Happy': 'π',
'Sad': 'π’',
'Angry': 'π‘',
'Neutral': 'π',
'Fear': 'π¨',
'Surprise': 'π²',
'Disgust': 'π€’',
'Calm': 'π'
}
# Convert timeline to DataFrame
timeline_data = results['timeline']
sample_timeline = pd.DataFrame(timeline_data)
sample_timeline.rename(columns={'time': 'Time (s)'}, inplace=True)
sample_timeline.rename(columns={'emotion': 'Emotion'}, inplace=True)
sample_timeline.rename(columns={'confidence': 'Confidence'}, inplace=True)
# Add emoji column
sample_timeline['Emoji'] = sample_timeline['Emotion'].map(emotion_emoji_map)
# Calculate metrics
total_duration = results['duration']
unique_emotions = results['emotions_detected']
dominant_emotion = results['dominant_emotion']
dominant_emoji = emotion_emoji_map[dominant_emotion]
# Metrics
col1, col2, col3 = st.columns(3)
with col1:
st.metric("Total Duration", total_duration, help="Audio length")
with col2:
st.metric("Emotions Detected", unique_emotions, help="Number of unique emotions")
with col3:
st.metric("Dominant Emotion", f"{dominant_emoji} {dominant_emotion}", help="Most frequent emotion")
st.markdown("---")
# Layout: Timeline and Pie Chart
col1, col2 = st.columns([2, 1])
with col1:
st.subheader("β±οΈ Emotion Timeline")
# Color mapping (supports all emotions)
colors = {
'Happy': '#FFD700',
'Sad': '#4169E1',
'Angry': '#DC143C',
'Neutral': '#808080',
'Fear': '#9370DB',
'Surprise': '#FF8C00',
'Disgust': '#32CD32',
'Calm': '#87CEEB'
}
# Create bar chart with individual bars (not grouped)
fig_timeline = go.Figure()
# Add all bars in sequence
bar_colors = [colors[emotion] for emotion in sample_timeline['Emotion']]
bar_text = [emotion_emoji_map[emotion] for emotion in sample_timeline['Emotion']]
fig_timeline.add_trace(go.Bar(
x=sample_timeline['Time (s)'],
y=sample_timeline['Confidence'],
marker_color=bar_colors,
text=bar_text,
textposition='outside',
textfont=dict(size=20),
hovertemplate='<b>%{x}</b><br>Confidence: %{y:.2%}<br><extra></extra>',
showlegend=False
))
fig_timeline.update_layout(
xaxis_title="Time",
yaxis_title="Confidence",
yaxis_range=[0, 1.1],
height=400,
hovermode='x'
)
st.plotly_chart(fig_timeline, width="stretch")
with col2:
st.subheader("π Distribution")
# Pie chart for emotion distribution
emotion_counts = sample_timeline['Emotion'].value_counts()
fig_pie = go.Figure(data=[go.Pie(
labels=[f"{emotion_emoji_map[e]} {e}" for e in emotion_counts.index],
values=emotion_counts.values,
marker=dict(colors=[colors[e] for e in emotion_counts.index]),
textinfo='percent+label',
textfont=dict(size=12),
hole=0.3
)])
fig_pie.update_layout(
height=400,
showlegend=False
)
st.plotly_chart(fig_pie, width="stretch")
# Detailed Timeline Table
st.subheader("π Detailed Timeline")
display_df = sample_timeline[['Time (s)', 'Emoji', 'Emotion', 'Confidence']].copy()
display_df['Confidence'] = display_df['Confidence'].apply(lambda x: f"{x:.2%}")
st.dataframe(
display_df,
width="stretch",
hide_index=True
)
# ============================================
# TAB 2: Audio Input Analysis (Live Recording)
# ============================================
with tab2:
st.header("ποΈ Audio Recording Analysis")
st.markdown("Record audio from your microphone for real-time sentiment analysis")
# Initialize session state for Tab 2
if 'tab2_results' not in st.session_state:
st.session_state.tab2_results = None
# Audio recorder widget
audio_data = st.audio_input("Record your audio")
audio_filename = "recorded_audio.wav"
if audio_data:
st.success("β
Recording complete! You can now analyze it.")
# Show audio player if available
if audio_data:
st.subheader("π΅ Audio Preview")
st.audio(audio_data)
# Analyze button
analyze_btn_tab2 = st.button(
"π Analyze Audio",
type="primary",
width="stretch",
disabled=(audio_data is None),
key="analyze_tab2"
)
# Analysis process
if analyze_btn_tab2 and audio_data:
try:
# Prepare file for upload
if hasattr(audio_data, 'seek'):
audio_data.seek(0)
files = {'file': (audio_filename, audio_data, 'audio/wav')}
# Upload to Flask
with st.spinner("π€ Uploading audio..."):
upload_response = requests.post(
f"{FLASK_URL}/upload",
files=files
)
if upload_response.status_code == 202:
job_data = upload_response.json()
job_id = job_data['job_id']
# Poll for status
progress_bar = st.progress(0)
status_text = st.empty()
import time
max_attempts = 60
attempt = 0
while attempt < max_attempts:
status_response = requests.get(f"{FLASK_URL}/status/{job_id}")
if status_response.status_code == 200:
status_data = status_response.json()
progress = status_data['progress']
message = status_data['message']
status = status_data['status']
progress_bar.progress(progress / 100)
status_text.text(f"βοΈ {message} ({progress}%)")
if status == "completed":
st.session_state.tab2_results = status_data['results']
progress_bar.progress(100)
status_text.empty()
st.success("β
Analysis Complete!")
break
elif status == "failed":
error_msg = status_data.get('error', 'Unknown error')
st.error(f"β Processing failed: {error_msg}")
progress_bar.empty()
status_text.empty()
break
time.sleep(5)
attempt += 1
if attempt >= max_attempts:
st.error("β±οΈ Processing timeout. Please try again.")
else:
st.error(f"β Upload failed: {upload_response.json().get('error', 'Unknown error')}")
except requests.exceptions.ConnectionError:
st.error("β Could not connect to Flask server. Make sure it's running on port 5000!")
except Exception as e:
st.error(f"β An error occurred: {str(e)}")
# Display results if available
if st.session_state.tab2_results:
results = st.session_state.tab2_results
st.markdown("---")
st.subheader("π Emotion Analysis Results")
# Emotion emoji mapping
emotion_emoji_map = {
'Happy': 'π',
'Sad': 'π’',
'Angry': 'π‘',
'Neutral': 'π',
'Fear': 'π¨',
'Surprise': 'π²',
'Disgust': 'π€’',
'Calm': 'π'
}
# Convert timeline to DataFrame
timeline_data = results['timeline']
sample_data = pd.DataFrame(timeline_data)
sample_data.rename(columns={'time': 'Time (s)', 'emotion': 'Emotion', 'confidence': 'Confidence'}, inplace=True)
# Add emoji column
sample_data['Emoji'] = sample_data['Emotion'].map(emotion_emoji_map)
# Metrics
total_duration = results['duration']
unique_emotions = results['emotions_detected']
dominant_emotion = results['dominant_emotion']
dominant_emoji = emotion_emoji_map.get(dominant_emotion, 'β')
col1, col2, col3 = st.columns(3)
with col1:
st.metric("Audio Duration", total_duration, help="Length of audio")
with col2:
st.metric("Emotions Detected", unique_emotions, help="Number of unique emotions")
with col3:
st.metric("Dominant Emotion", f"{dominant_emoji} {dominant_emotion}", help="Most frequent emotion")
st.markdown("---")
# Layout: Timeline and Pie Chart
col1, col2 = st.columns([2, 1])
with col1:
st.subheader("β±οΈ Emotion Timeline")
# Color mapping
colors = {
'Happy': '#FFD700',
'Sad': '#4169E1',
'Angry': '#DC143C',
'Neutral': '#808080',
'Fear': '#9370DB',
'Surprise': '#FF8C00',
'Disgust': '#32CD32',
'Calm': '#87CEEB'
}
# Create bar chart
bar_colors = [colors.get(emotion, '#808080') for emotion in sample_data['Emotion']]
bar_text = [emotion_emoji_map.get(emotion, 'β') for emotion in sample_data['Emotion']]
fig_timeline = go.Figure()
fig_timeline.add_trace(go.Bar(
x=sample_data['Time (s)'],
y=sample_data['Confidence'],
marker_color=bar_colors,
text=bar_text,
textposition='outside',
textfont=dict(size=20),
hovertemplate='<b>%{x}</b><br>Confidence: %{y:.2%}<br><extra></extra>',
showlegend=False
))
fig_timeline.update_layout(
xaxis_title="Time",
yaxis_title="Confidence",
yaxis_range=[0, 1.1],
height=400,
hovermode='x'
)
st.plotly_chart(fig_timeline, width="stretch")
with col2:
st.subheader("π Distribution")
# Pie chart
emotion_counts = sample_data['Emotion'].value_counts()
fig_pie = go.Figure(data=[go.Pie(
labels=[f"{emotion_emoji_map.get(e, 'β')} {e}" for e in emotion_counts.index],
values=emotion_counts.values,
marker=dict(colors=[colors.get(e, '#808080') for e in emotion_counts.index]),
textinfo='percent+label',
textfont=dict(size=12),
hole=0.3
)])
fig_pie.update_layout(
height=400,
showlegend=False
)
st.plotly_chart(fig_pie, width="stretch")
# Detailed Timeline Table
st.subheader("π Detailed Timeline")
display_df = sample_data[['Time (s)', 'Emoji', 'Emotion', 'Confidence']].copy()
display_df['Confidence'] = display_df['Confidence'].apply(lambda x: f"{x:.2%}")
st.dataframe(
display_df,
width="stretch",
hide_index=True
)
# Footer
st.markdown("---")
st.caption("π§ Powered by Flask + Streamlit | Audio Sentiment Analysis")
|