File size: 35,190 Bytes
a361db3 | 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 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 | """
Intelligent Hearing Aid - Audio Source Separation Interface
Oticon-inspired clean design with proper UX feedback.
"""
import streamlit as st
import numpy as np
import plotly.graph_objects as go
from plotly.subplots import make_subplots
import tempfile
import os
import io
import zipfile
import json
import soundfile as sf
import librosa
# Page configuration
st.set_page_config(
page_title="Audio Source Separator | Oticon Audio Explorers 2026",
page_icon="🎧",
layout="wide",
initial_sidebar_state="collapsed"
)
st.markdown("""
<style>
/* Base - clean light background */
.stApp {
background: #f8f9fa;
}
/* Headers - dark, professional */
h1, h2, h3:not(.speaker-header) {
color: #1a1a2e !important;
font-weight: 600 !important;
}
.speaker-header {
font-weight: 600 !important;
}
/* ALL buttons - consistent magenta style */
.stButton > button,
.stDownloadButton > button {
background: #9a1b5a !important;
color: white !important;
border: none !important;
border-radius: 8px !important;
font-weight: 500 !important;
padding: 0.6rem 1.2rem !important;
transition: background 0.2s ease !important;
}
.stButton > button:hover,
.stDownloadButton > button:hover {
background: #7d1649 !important;
color: white !important;
border: none !important;
}
.stButton > button:focus,
.stDownloadButton > button:focus {
background: #9a1b5a !important;
color: white !important;
box-shadow: 0 0 0 2px rgba(154, 27, 90, 0.3) !important;
}
.stButton > button:active,
.stDownloadButton > button:active {
background: #6d1340 !important;
color: white !important;
}
.stButton > button:disabled {
background: #d4a5bb !important;
color: white !important;
cursor: not-allowed !important;
}
/* Selectbox - match magenta branding */
[data-testid="stSelectbox"] label {
color: #1a1a2e !important;
font-weight: 500 !important;
}
[data-testid="stSelectbox"] [data-baseweb="select"] > div {
border: 1px solid #d1d5db !important;
border-radius: 8px !important;
background: white !important;
transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}
[data-testid="stSelectbox"] [data-baseweb="select"] > div:hover {
border-color: #9a1b5a !important;
}
[data-testid="stSelectbox"] [data-baseweb="select"] > div:focus-within {
border-color: #9a1b5a !important;
box-shadow: 0 0 0 2px rgba(154, 27, 90, 0.25) !important;
}
[data-testid="stSelectbox"] [data-baseweb="select"] span,
[data-testid="stSelectbox"] [data-baseweb="select"] input {
color: #1a1a2e !important;
}
[data-testid="stSelectbox"] [data-baseweb="select"] svg {
fill: #9a1b5a !important;
}
/* Ensure selected value text is visible */
[data-testid="stSelectbox"] [data-baseweb="select"] > div > div,
[data-testid="stSelectbox"] [data-baseweb="select"] > div > div > div {
color: #1a1a2e !important;
}
/* Dropdown menu styling (rendered in portal/popover) */
div[data-baseweb="popover"] [role="listbox"] {
background: white !important;
border: 1px solid #e9ecef !important;
border-radius: 8px !important;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
}
div[data-baseweb="popover"] [role="option"] {
background: white !important;
color: #1a1a2e !important;
}
div[data-baseweb="popover"] [role="option"]:hover {
background: #fdf5f8 !important;
color: #7d1649 !important;
}
div[data-baseweb="popover"] [role="option"][aria-selected="true"] {
background: #f4d7e4 !important;
color: #7d1649 !important;
font-weight: 600 !important;
}
/* Text input (HF token) - match branding */
[data-testid="stTextInput"] label {
color: #1a1a2e !important;
font-weight: 500 !important;
}
[data-testid="stTextInput"] input {
background: white !important;
color: #1a1a2e !important;
border: 1px solid #d1d5db !important;
border-radius: 8px !important;
}
[data-testid="stTextInput"] input::placeholder {
color: #9ca3af !important;
opacity: 1 !important;
}
[data-testid="stTextInput"] input:hover {
border-color: #9a1b5a !important;
}
[data-testid="stTextInput"] input:focus {
border-color: #9a1b5a !important;
box-shadow: 0 0 0 2px rgba(154, 27, 90, 0.25) !important;
outline: none !important;
}
/* Cards */
.info-card {
background: white;
border: 1px solid #e9ecef;
border-radius: 12px;
padding: 24px;
margin-bottom: 16px;
}
.info-card h4 {
color: #6c757d;
margin: 0 0 8px 0;
font-size: 0.8rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.info-card .value {
color: #1a1a2e;
font-size: 1.8rem;
font-weight: 600;
margin: 0;
}
.info-card .unit {
color: #6c757d;
font-size: 0.9rem;
margin-left: 4px;
}
/* Speaker cards */
.speaker-card {
background: white;
border: 1px solid #e9ecef;
border-radius: 12px;
padding: 20px;
margin: 12px 0;
}
.speaker-card.selected {
border: 2px solid #9a1b5a;
background: #fdf5f8;
}
.speaker-badge {
display: inline-block;
background: #9a1b5a;
color: white;
font-size: 0.75rem;
font-weight: 600;
padding: 4px 10px;
border-radius: 12px;
margin-left: 8px;
}
/* Progress section */
.progress-section {
background: white;
border: 1px solid #e9ecef;
border-radius: 12px;
padding: 32px;
text-align: center;
}
/* Metrics */
[data-testid="stMetricLabel"] {
color: #6c757d !important;
font-size: 0.85rem !important;
text-transform: uppercase !important;
letter-spacing: 0.5px !important;
}
[data-testid="stMetricValue"] {
color: #1a1a2e !important;
font-weight: 600 !important;
}
/* Dividers */
hr {
border-color: #e9ecef !important;
}
/* Hide Streamlit branding */
#MainMenu {visibility: hidden;}
footer {visibility: hidden;}
/* EXPANDERS - Magenta header with white text */
[data-testid="stExpander"] {
border: none !important;
border-radius: 8px !important;
overflow: hidden !important;
}
[data-testid="stExpander"] > details {
border: none !important;
}
[data-testid="stExpander"] > details > summary {
background: #9a1b5a !important;
color: white !important;
border-radius: 8px !important;
padding: 12px 16px !important;
font-weight: 500 !important;
}
[data-testid="stExpander"] > details > summary:hover {
background: #7d1649 !important;
}
[data-testid="stExpander"] > details > summary span,
[data-testid="stExpander"] > details > summary p {
color: white !important;
}
[data-testid="stExpander"] > details > summary svg {
fill: white !important;
stroke: white !important;
}
/* Expander content - white background */
[data-testid="stExpander"] > details > div {
background: white !important;
border: 1px solid #e9ecef !important;
border-top: none !important;
border-radius: 0 0 8px 8px !important;
padding: 16px !important;
}
/* Progress bar - magenta */
.stProgress > div > div > div {
background: #9a1b5a !important;
}
/* File uploader */
[data-testid="stFileUploader"] {
background: white;
border: 2px dashed #d1d5db;
border-radius: 12px;
padding: 20px;
}
[data-testid="stFileUploader"]:hover {
border-color: #9a1b5a;
}
/* Audio player styling */
audio {
border-radius: 8px;
}
/* JSON viewer - force light theme */
[data-testid="stJson"],
.stJson {
background: #f8f9fa !important;
border-radius: 8px !important;
padding: 16px !important;
}
[data-testid="stJson"] *,
.stJson * {
background: transparent !important;
}
/* JSON text colors - make keys visible */
[data-testid="stJson"] span {
color: #1a1a2e !important;
}
/* Override any dark theme in JSON */
pre, code {
background: #f8f9fa !important;
color: #1a1a2e !important;
}
/* Muted text class */
.text-muted {
color: #6c757d !important;
}
</style>
""", unsafe_allow_html=True)
def create_speaker_radar(sources_info: list, selected_idx: int) -> go.Figure:
"""Create a clean polar chart showing speaker positions."""
fig = go.Figure()
# Modern color palette with magenta accent
colors = ['#6366f1', '#f59e0b', '#10b981', '#8b5cf6'] # indigo, amber, emerald, violet
selected_color = '#9a1b5a' # Oticon magenta
# Head circle
theta_head = np.linspace(0, 360, 100)
fig.add_trace(go.Scatterpolar(
r=[0.2] * 100,
theta=theta_head,
mode='lines',
line=dict(color='#d1d5db', width=2),
fill='toself',
fillcolor='#f9fafb',
hoverinfo='skip',
showlegend=False
))
# Plot speakers
for i, info in enumerate(sources_info):
is_selected = i == selected_idx
direction = info.get('direction_deg')
if direction is None:
direction = 0.0
color = selected_color if is_selected else colors[i % len(colors)]
gender = info.get('gender') or 'unknown'
symbol = 'diamond' if gender == 'male' else 'circle'
hover_text = (
f"<b>Speaker {i+1}</b><br>"
f"Direction: {direction:.0f}°<br>"
f"Gender: {gender}<br>"
f"Language: {(info.get('language') or '?').upper()}"
)
fig.add_trace(go.Scatterpolar(
r=[0.75],
theta=[direction],
mode='markers+text',
marker=dict(
size=30 if is_selected else 24,
color=color,
symbol=symbol,
line=dict(color='white', width=3)
),
text=[str(i+1)],
textposition='middle center',
textfont=dict(color='white', size=12, family='Arial'),
name=f"Speaker {i+1}",
hovertemplate=hover_text + "<extra></extra>"
))
fig.add_trace(go.Scatterpolar(
r=[0.2, 0.75],
theta=[direction, direction],
mode='lines',
line=dict(color=color, width=2 if is_selected else 1, dash='solid' if is_selected else 'dot'),
hoverinfo='skip',
showlegend=False
))
fig.update_layout(
polar=dict(
radialaxis=dict(visible=False, range=[0, 1]),
angularaxis=dict(
tickmode='array',
tickvals=[0, 90, 180, 270],
ticktext=['Front', 'Right', 'Back', 'Left'],
tickfont=dict(size=12, color='#6c757d'),
direction='clockwise',
rotation=90,
gridcolor='#e9ecef',
linecolor='#d1d5db'
),
bgcolor='white'
),
showlegend=False,
paper_bgcolor='white',
plot_bgcolor='white',
margin=dict(l=60, r=60, t=40, b=40),
height=380
)
return fig
def create_waveform_plot(audio: np.ndarray, sr: int, color: str = '#9a1b5a') -> go.Figure:
"""Create a minimal waveform visualization."""
max_points = 3000
if len(audio) > max_points:
step = len(audio) // max_points
audio_plot = audio[::step]
time = np.arange(len(audio_plot)) * step / sr
else:
audio_plot = audio
time = np.arange(len(audio)) / sr
# Convert hex to rgba for fill (Plotly doesn't support 8-digit hex)
if color.startswith('#') and len(color) == 7:
r = int(color[1:3], 16)
g = int(color[3:5], 16)
b = int(color[5:7], 16)
fill_color = f'rgba({r},{g},{b},0.15)'
else:
fill_color = 'rgba(154,27,90,0.15)' # fallback magenta
fig = go.Figure()
fig.add_trace(go.Scatter(
x=time, y=audio_plot,
mode='lines',
line=dict(color=color, width=1),
fill='tozeroy',
fillcolor=fill_color,
hovertemplate='Time: %{x:.2f}s<br>Amplitude: %{y:.3f}<extra></extra>'
))
fig.update_layout(
xaxis=dict(
title=dict(text='Time (s)', font=dict(size=11, color='#6c757d')),
gridcolor='#f0f2f5',
tickfont=dict(color='#6c757d', size=10),
zeroline=False
),
yaxis=dict(
title=dict(text='Amplitude', font=dict(size=11, color='#6c757d')),
gridcolor='#f0f2f5',
tickfont=dict(color='#6c757d', size=10),
zeroline=True,
zerolinecolor='#e9ecef'
),
paper_bgcolor='white',
plot_bgcolor='white',
margin=dict(l=50, r=20, t=20, b=40),
height=120
)
return fig
def create_spectrogram(audio: np.ndarray, sr: int) -> go.Figure:
"""Create a clean spectrogram visualization."""
n_fft = 2048
hop_length = 512
D = librosa.stft(audio, n_fft=n_fft, hop_length=hop_length)
S_db = librosa.amplitude_to_db(np.abs(D), ref=np.max)
times = librosa.times_like(S_db, sr=sr, hop_length=hop_length)
freqs = librosa.fft_frequencies(sr=sr, n_fft=n_fft)
freq_mask = freqs <= 8000
S_db = S_db[freq_mask, :]
freqs = freqs[freq_mask]
# Magenta-based colorscale
colorscale = [
[0, '#f8f9fa'],
[0.3, '#e9d5df'],
[0.6, '#c77da2'],
[0.8, '#9a1b5a'],
[1, '#5a1035']
]
fig = go.Figure(data=go.Heatmap(
z=S_db, x=times, y=freqs,
colorscale=colorscale,
showscale=False,
hovertemplate='Time: %{x:.2f}s<br>Freq: %{y:.0f}Hz<br>Power: %{z:.1f}dB<extra></extra>'
))
fig.update_layout(
xaxis=dict(
title=dict(text='Time (s)', font=dict(size=11, color='#6c757d')),
tickfont=dict(color='#6c757d', size=10)
),
yaxis=dict(
title=dict(text='Frequency (Hz)', font=dict(size=11, color='#6c757d')),
tickfont=dict(color='#6c757d', size=10)
),
paper_bgcolor='white',
plot_bgcolor='white',
margin=dict(l=60, r=20, t=20, b=40),
height=150
)
return fig
def create_comparison_bars(sources_info: list, selected_idx: int) -> go.Figure:
"""Create a clean bar comparison chart."""
n = len(sources_info)
speakers = [f"S{i+1}" for i in range(n)]
colors = ['#9a1b5a' if i == selected_idx else '#d1d5db' for i in range(n)]
fig = make_subplots(
rows=1, cols=3,
subplot_titles=('Selection Score', 'Pitch (Hz)', 'Energy'),
horizontal_spacing=0.12
)
scores = [info.get('selection_score', 0) for info in sources_info]
f0s = [info.get('f0_hz') or info.get('mean_f0_hz') or 0 for info in sources_info]
energies = [info.get('energy', 0) * 100 for info in sources_info]
for col, data in enumerate([(scores, 'Score'), (f0s, 'Hz'), (energies, 'Energy')], 1):
fig.add_trace(go.Bar(
x=speakers, y=data[0],
marker_color=colors,
showlegend=False,
hovertemplate=f'Speaker %{{x}}<br>{data[1]}: %{{y:.1f}}<extra></extra>'
), row=1, col=col)
fig.update_layout(
paper_bgcolor='white',
plot_bgcolor='white',
height=220,
margin=dict(l=40, r=40, t=50, b=30),
font=dict(color='#1a3a5c')
)
fig.update_xaxes(tickfont=dict(color='#6c757d', size=10), gridcolor='#f0f2f5')
fig.update_yaxes(tickfont=dict(color='#6c757d', size=10), gridcolor='#f0f2f5')
for annotation in fig['layout']['annotations']:
annotation['font'] = dict(color='#1a1a2e', size=12)
return fig
def create_timeline(sources_info: list, duration: float, selected_idx: int) -> go.Figure:
"""Create a simple audio timeline."""
fig = go.Figure()
colors = ['#6366f1', '#f59e0b', '#10b981', '#8b5cf6'] # indigo, amber, emerald, violet
for i, info in enumerate(sources_info):
is_selected = i == selected_idx
color = '#9a1b5a' if is_selected else colors[i % len(colors)]
language = (info.get('language') or '?').upper()
gender = (info.get('gender') or '?')
fig.add_trace(go.Bar(
x=[duration],
y=[f"Speaker {i+1}"],
orientation='h',
marker=dict(color=color, opacity=1 if is_selected else 0.7),
text=[f"{language} · {gender[0].upper()}"],
textposition='inside',
textfont=dict(color='white', size=11),
hovertemplate=f"Speaker {i+1}<br>Duration: {duration:.1f}s<extra></extra>",
showlegend=False
))
fig.update_layout(
xaxis=dict(
title=dict(text='Time (s)', font=dict(size=11, color='#6c757d')),
range=[0, duration],
gridcolor='#f0f2f5',
tickfont=dict(color='#6c757d', size=10)
),
yaxis=dict(tickfont=dict(color='#1a1a2e', size=11), gridcolor='#f0f2f5'),
barmode='stack',
paper_bgcolor='white',
plot_bgcolor='white',
height=180,
margin=dict(l=100, r=20, t=20, b=40)
)
return fig
def process_audio(
audio_path: str,
approach: str = "ica",
whisper_model: str = "small",
hf_token: str | None = None,
progress_callback=None,
) -> dict:
"""Process audio through the separation pipeline with progress updates."""
from approaches import get_approach
output_dir = tempfile.mkdtemp()
if progress_callback:
progress_callback(0.05, "Loading audio file...")
approach_class = get_approach(approach)
pipeline = approach_class()
if progress_callback:
progress_callback(0.15, "Processing audio and separating sources...")
# Run selected approach pipeline
run_kwargs = {
"input_file": audio_path,
"output_dir": output_dir,
"whisper_model": whisper_model,
}
if approach == "ica_deeplearning" and hf_token:
run_kwargs["hf_token"] = hf_token
pipeline_output = pipeline.run(**run_kwargs)
results = pipeline_output.to_dict() if hasattr(pipeline_output, "to_dict") else dict(pipeline_output)
if progress_callback:
progress_callback(0.9, "Finalizing results...")
results['output_dir'] = output_dir
results['sources_audio'] = []
for i in range(results['n_speakers']):
source_path = os.path.join(output_dir, f"source_{i+1}.wav")
audio, _ = sf.read(source_path)
results['sources_audio'].append(audio)
original_audio, input_sr = sf.read(audio_path, always_2d=True)
results['original_audio'] = original_audio[:, 0]
results['sr'] = input_sr
if progress_callback:
progress_callback(1.0, "Complete!")
return results
def create_download_zip(results: dict) -> bytes:
"""Create ZIP with all outputs."""
zip_buffer = io.BytesIO()
with zipfile.ZipFile(zip_buffer, 'w', zipfile.ZIP_DEFLATED) as zf:
output_dir = results['output_dir']
for i in range(results['n_speakers']):
source_path = os.path.join(output_dir, f"source_{i+1}.wav")
if os.path.exists(source_path):
zf.write(source_path, f"speaker_{i+1}.wav")
output_path = os.path.join(output_dir, "output.wav")
if os.path.exists(output_path):
zf.write(output_path, "selected_speaker.wav")
results_json = {k: v for k, v in results.items()
if k not in ['output_dir', 'sources_audio', 'original_audio', 'sr']}
zf.writestr("results.json", json.dumps(results_json, indent=2))
return zip_buffer.getvalue()
def get_direction_label(direction: float) -> str:
"""Convert direction to human-readable label."""
if direction < 22.5 or direction > 337.5:
return "Front"
elif direction < 67.5:
return "Front-Right"
elif direction < 112.5:
return "Right"
elif direction < 157.5:
return "Back-Right"
elif direction < 202.5:
return "Back"
elif direction < 247.5:
return "Back-Left"
elif direction < 292.5:
return "Left"
else:
return "Front-Left"
def main():
"""Main application."""
# Header
st.markdown("""
<div style="text-align: center; padding: 40px 0 20px 0;">
<p style="color: #9a1b5a; font-size: 0.9rem; font-weight: 600; letter-spacing: 1px; margin-bottom: 8px;">
OTICON Audio Explorers 2026
</p>
<h1 style="font-size: 2.4rem; margin: 0 0 12px 0; color: #1a1a2e;">
Audio Source Separator
</h1>
<p style="color: #6c757d; font-size: 1.05rem; max-width: 500px; margin: 0 auto;">
Separate and analyze individual speakers from multi-channel hearing aid recordings
</p>
</div>
""", unsafe_allow_html=True)
st.markdown("<br>", unsafe_allow_html=True)
st.markdown("### Separation Approach")
approach_options = ["ica", "frankenstein", "ica_deeplearning"]
selected_approach = st.selectbox(
"Choose approach",
options=approach_options,
index=0,
format_func=lambda x: x.replace("_", "+").upper(),
help="Select which pipeline variant to run. Default is ICA."
)
hf_token = None
if selected_approach == "ica_deeplearning":
hf_token_input = st.text_input(
"Hugging Face Token (optional)",
type="password",
help="Needed only if your ICA+DeepLearning run uses Pyannote diarization.",
placeholder="hf_..."
)
hf_token = hf_token_input.strip() or None
# File upload section with clear label
st.markdown("""
<div class="info-card">
<h4>Upload Recording</h4>
<p style="color: #6c757d; font-size: 0.9rem; margin: 0 0 16px 0;">
Select a 4-channel WAV file from your hearing aid microphone array
</p>
</div>
""", unsafe_allow_html=True)
uploaded_file = st.file_uploader(
"Choose audio file",
type=['wav'],
help="4-channel WAV format (Left Front, Left Rear, Right Front, Right Rear)",
label_visibility="collapsed"
)
if uploaded_file is not None:
with tempfile.NamedTemporaryFile(delete=False, suffix='.wav') as tmp:
tmp.write(uploaded_file.read())
tmp_path = tmp.name
try:
audio, sr = sf.read(tmp_path, always_2d=True)
n_channels = audio.shape[1]
duration = len(audio) / sr
if n_channels != 4:
st.error(f"Expected 4 channels, got {n_channels}. Please upload a valid hearing aid recording.")
return
st.markdown("<br>", unsafe_allow_html=True)
# File info cards with proper labels
st.markdown("### Recording Details")
col1, col2, col3, col4 = st.columns(4)
with col1:
st.markdown(f"""
<div class="info-card">
<h4>Duration</h4>
<p class="value">{duration:.1f}<span class="unit">sec</span></p>
</div>
""", unsafe_allow_html=True)
with col2:
st.markdown(f"""
<div class="info-card">
<h4>Sample Rate</h4>
<p class="value">{sr//1000}<span class="unit">kHz</span></p>
</div>
""", unsafe_allow_html=True)
with col3:
st.markdown(f"""
<div class="info-card">
<h4>Channels</h4>
<p class="value">{n_channels}</p>
</div>
""", unsafe_allow_html=True)
with col4:
st.markdown(f"""
<div class="info-card">
<h4>File Size</h4>
<p class="value">{uploaded_file.size / (1024*1024):.1f}<span class="unit">MB</span></p>
</div>
""", unsafe_allow_html=True)
# Audio preview with label
st.markdown("#### Preview")
mono = np.mean(audio, axis=1)
audio_bytes = io.BytesIO()
sf.write(audio_bytes, mono, sr, format='WAV')
st.audio(audio_bytes.getvalue(), format='audio/wav')
st.markdown("<br>", unsafe_allow_html=True)
# Initialize session state for processing
if 'processing' not in st.session_state:
st.session_state.processing = False
# Process button with proper state management
col_btn, col_space = st.columns([1, 2])
with col_btn:
analyze_clicked = st.button(
"Analyze Audio" if not st.session_state.processing else "Processing...",
type="primary",
disabled=st.session_state.processing,
use_container_width=True
)
if analyze_clicked and not st.session_state.processing:
st.session_state.processing = True
st.rerun()
# Show processing UI
if st.session_state.processing and 'results' not in st.session_state:
st.markdown("""
<div class="progress-section">
<h3 style="margin: 0 0 16px 0;">Processing Audio</h3>
<p style="color: #6c757d; margin-bottom: 20px;">
Separating sources and analyzing speakers...
</p>
</div>
""", unsafe_allow_html=True)
progress_bar = st.progress(0)
status_text = st.empty()
def update_progress(value, text):
progress_bar.progress(value)
status_text.markdown(f"<p style='text-align: center; color: #6c757d;'>{text}</p>", unsafe_allow_html=True)
try:
results = process_audio(
tmp_path,
approach=selected_approach,
hf_token=hf_token,
progress_callback=update_progress,
)
st.session_state['results'] = results
st.session_state.processing = False
st.rerun()
except Exception as e:
st.session_state.processing = False
st.error(f"Error processing audio: {str(e)}")
return
# Display results
if 'results' in st.session_state:
results = st.session_state['results']
sources_info = results['sources']
selected_idx = results['talker_of_interest'] - 1
st.divider()
st.markdown("## Analysis Results")
st.caption(f"Approach: {(results.get('approach') or selected_approach).replace('_', '+').upper()}")
# Two column layout
col_left, col_right = st.columns([1, 1])
with col_left:
st.markdown("### Speaker Positions")
st.markdown("<p style='color: #6c757d; font-size: 0.9rem;'>Spatial location of detected speakers relative to the listener</p>", unsafe_allow_html=True)
radar_fig = create_speaker_radar(sources_info, selected_idx)
st.plotly_chart(radar_fig, use_container_width=True)
with col_right:
st.markdown("#### Speaker Comparison")
st.markdown("<p style='color: #6c757d; font-size: 0.9rem;'>Key metrics used for target speaker selection</p>", unsafe_allow_html=True)
comparison_fig = create_comparison_bars(sources_info, selected_idx)
st.plotly_chart(comparison_fig, use_container_width=True)
st.markdown("#### Activity Timeline")
st.markdown("<p style='color: #6c757d; font-size: 0.9rem;'>Speaker presence throughout the recording</p>", unsafe_allow_html=True)
timeline_fig = create_timeline(sources_info, results['duration_seconds'], selected_idx)
st.plotly_chart(timeline_fig, use_container_width=True)
st.divider()
st.markdown("## Separated Speakers")
st.markdown("<p style='color: #6c757d;'>Individual audio streams extracted from the recording</p>", unsafe_allow_html=True)
# Speaker colors - matching radar
colors = ['#6366f1', '#f59e0b', '#10b981', '#8b5cf6']
for i, info in enumerate(sources_info):
is_selected = i == selected_idx
color = '#9a1b5a' if is_selected else colors[i % len(colors)]
# Speaker card
card_class = "speaker-card selected" if is_selected else "speaker-card"
badge = '<span class="speaker-badge">TARGET</span>' if is_selected else ''
st.markdown(f"""
<div class="{card_class}">
<h3 class="speaker-header" style="margin: 0; color: {color}; display: inline-flex; align-items: center;">
Speaker {i+1}{badge}
</h3>
</div>
""", unsafe_allow_html=True)
# Metrics
c1, c2, c3, c4 = st.columns(4)
direction = info.get('direction_deg')
if direction is None:
c1.metric("Direction", "N/A")
else:
c1.metric("Direction", f"{direction:.0f}° ({get_direction_label(direction)})")
c2.metric("Gender", (info.get('gender') or 'unknown').title())
c3.metric("Language", (info.get('language') or '?').upper())
score = info.get('selection_score')
c4.metric("Score", f"{score:.1f}" if score is not None else "N/A")
# Audio + download
col_audio, col_dl = st.columns([4, 1])
source_path = os.path.join(results['output_dir'], f"source_{i+1}.wav")
with col_audio:
if os.path.exists(source_path):
st.audio(source_path, format='audio/wav')
with col_dl:
if os.path.exists(source_path):
with open(source_path, 'rb') as f:
st.download_button(
"Download",
data=f.read(),
file_name=f"speaker_{i+1}.wav",
mime="audio/wav",
key=f"dl_{i}"
)
# Transcription
transcription = info.get('transcription') or info.get('transcript') or ''
if transcription:
with st.expander("View Transcription"):
st.write(f"<p style='color: #1a1a2e;'>{transcription}</p>", unsafe_allow_html=True)
# Waveform
if i < len(results.get('sources_audio', [])):
with st.expander("View Waveform & Spectrogram"):
wf = create_waveform_plot(results['sources_audio'][i], results['sr'], color)
st.plotly_chart(wf, use_container_width=True)
spec = create_spectrogram(results['sources_audio'][i], results['sr'])
st.plotly_chart(spec, use_container_width=True)
# Download section
st.divider()
st.markdown("## Export")
st.markdown("<p style='color: #6c757d;'>Download separated audio files and analysis data</p>", unsafe_allow_html=True)
c1, c2, c3 = st.columns(3)
with c1:
zip_data = create_download_zip(results)
st.download_button(
"Download All (ZIP)",
data=zip_data,
file_name="separated_audio.zip",
mime="application/zip",
use_container_width=True
)
with c2:
output_path = os.path.join(results['output_dir'], "output.wav")
if os.path.exists(output_path):
with open(output_path, 'rb') as f:
st.download_button(
"Download Target Speaker",
data=f.read(),
file_name="target_speaker.wav",
mime="audio/wav",
use_container_width=True
)
with c3:
results_json = {k: v for k, v in results.items()
if k not in ['output_dir', 'sources_audio', 'original_audio', 'sr']}
st.download_button(
"Download Analysis (JSON)",
data=json.dumps(results_json, indent=2),
file_name="analysis.json",
mime="application/json",
use_container_width=True
)
# Raw JSON
with st.expander("View Raw Analysis Data"):
display_results = {k: v for k, v in results.items()
if k not in ["input_file", 'output_dir', 'sources_audio', 'original_audio', 'sr']}
st.json(display_results)
# Reset button
st.markdown("<br>", unsafe_allow_html=True)
if st.button("Analyze Another Recording"):
for key in ['results', 'processing']:
if key in st.session_state:
del st.session_state[key]
st.rerun()
finally:
if os.path.exists(tmp_path):
os.unlink(tmp_path)
if __name__ == "__main__":
main()
|