Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
File size: 17,850 Bytes
2d68ee3 | 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 | """
utils.py — pure logic helpers with no Streamlit dependency.
Covers:
- Audio processing (processFile, clip extraction, randomization)
- DataFrame builders (build_df2 … build_df5)
- Plotly figure builders (one function per chart tab)
- Multi-file summary DataFrame builders
"""
import io
import random
import datetime as dt
import copy
import numpy as np
import pandas as pd
import soundfile as sf
import torch
import plotly.express as px
import plotly.graph_objects as go
import sonogram_utility as su
# ---------------------------------------------------------------------------
# Constants
# ---------------------------------------------------------------------------
CLIP_MIN_S = 3.0
CLIP_MAX_S = 5.0
CLIP_SCAN_STEP_S = 0.5
TRANSPARENT_BG = dict(
plot_bgcolor="rgba(0,0,0,0)",
paper_bgcolor="rgba(0,0,0,0)",
)
# ---------------------------------------------------------------------------
# Audio processing
# ---------------------------------------------------------------------------
def processFile(filePath, pipeline, enableDenoise, earlyCleanup,
gainWindow, minimumGain, maximumGain,
dfModel=None, dfState=None, attenLimDB=3):
"""Load, optionally denoise, equalize, and diarize an audio file.
Returns (annotations, totalTimeInSeconds, waveform_tensor, sample_rate).
"""
print("Loading file")
waveformList, sampleRate = su.splitIntoTimeSegments(filePath, 600)
print("File loaded")
enhancedWaveformList = []
if enableDenoise:
print("Denoising")
for w in waveformList:
if enableDenoise:
from df import enhance
newW = enhance(dfModel, dfState, w, atten_lim_db=attenLimDB).detach().cpu()
enhancedWaveformList.append(newW)
else:
enhancedWaveformList.append(w)
if enableDenoise:
print("Audio denoised")
waveformEnhanced = su.combineWaveforms(enhancedWaveformList)
if earlyCleanup:
del enhancedWaveformList
print("Equalizing Audio")
waveform_gain_adjusted = su.equalizeVolume()(
waveformEnhanced, sampleRate, gainWindow, minimumGain, maximumGain
)
if earlyCleanup:
del waveformEnhanced
print("Audio Equalized")
print("Detecting speakers")
diarization_output = pipeline({"waveform": waveform_gain_adjusted, "sample_rate": sampleRate})
annotations = diarization_output.speaker_diarization
print("Speakers Detected")
totalTimeInSeconds = int(waveform_gain_adjusted.shape[-1] / sampleRate)
return annotations, totalTimeInSeconds, waveform_gain_adjusted, sampleRate
# ---------------------------------------------------------------------------
# Speaker clip helpers
# ---------------------------------------------------------------------------
def extract_clip_bytes(waveform, sample_rate, seg_start, seg_end):
"""Return WAV bytes for the loudest CLIP_MIN–CLIP_MAX window in [seg_start, seg_end]."""
total_samples = waveform.shape[-1]
seg_start_s = int(seg_start * sample_rate)
seg_end_s = min(int(seg_end * sample_rate), total_samples)
seg_dur = (seg_end_s - seg_start_s) / sample_rate
clip_dur = min(max(min(seg_dur, CLIP_MAX_S), CLIP_MIN_S), seg_dur)
clip_samples = int(clip_dur * sample_rate)
best_start = seg_start_s
best_rms = -1.0
step_samples = int(CLIP_SCAN_STEP_S * sample_rate)
pos = seg_start_s
while pos + clip_samples <= seg_end_s:
window = waveform[:, pos: pos + clip_samples].float()
rms = float(window.pow(2).mean().sqrt())
if rms > best_rms:
best_rms = rms
best_start = pos
pos += step_samples
clip_np = waveform[:, best_start: best_start + clip_samples].numpy().T
buf = io.BytesIO()
sf.write(buf, clip_np, sample_rate, format="WAV", subtype="PCM_16")
buf.seek(0)
return buf.read()
def build_speaker_clips(annotations, waveform, sample_rate):
"""Return (clips_dict, segments_dict) for all speakers in annotations.
clips_dict : {speaker: wav_bytes}
segments_dict : {speaker: [(start, end), ...]}
"""
clips = {}
segments = {}
for speaker in annotations.labels():
speaker_segments = [
seg for seg, _, label in annotations.itertracks(yield_label=True)
if label == speaker
]
if not speaker_segments:
continue
segments[speaker] = [(s.start, s.end) for s in speaker_segments]
longest = max(speaker_segments, key=lambda s: s.duration)
clips[speaker] = extract_clip_bytes(waveform, sample_rate, longest.start, longest.end)
return clips, segments
def get_randomized_clip(waveform, sample_rate, segments):
"""Return WAV bytes for a random 3–5 s window drawn from a random segment.
segments : [(start, end), ...] (all segments for one speaker)
"""
durations = [max(e - s, 0.01) for s, e in segments]
total_dur = sum(durations)
rand_val = random.random() * total_dur
cumulative = 0.0
chosen_start, chosen_end = segments[0]
for (seg_s, seg_e), dur in zip(segments, durations):
cumulative += dur
if rand_val <= cumulative:
chosen_start, chosen_end = seg_s, seg_e
break
seg_dur = chosen_end - chosen_start
clip_dur = min(max(min(seg_dur, CLIP_MAX_S), CLIP_MIN_S), seg_dur)
max_offset = max(seg_dur - clip_dur, 0.0)
offset = random.uniform(0.0, max_offset)
clip_start = chosen_start + offset
clip_end = clip_start + clip_dur
return extract_clip_bytes(waveform, sample_rate, clip_start, clip_end)
# ---------------------------------------------------------------------------
# DataFrame builders (called from analyze() in state.py)
# ---------------------------------------------------------------------------
def build_df3(noVoice, oneVoice, multiVoice):
"""Voice category totals DataFrame."""
return pd.DataFrame({
"values": [su.sumTimes(noVoice), su.sumTimes(oneVoice), su.sumTimes(multiVoice)],
"names": ["No Voice", "One Voice", "Multi Voice"],
})
def build_df4(speakerNames, categorySelections, categoryNames, currAnnotation):
"""Speaker-to-category time DataFrame. Returns (df4, nameList, valueList, extraNames, extraValues)."""
nameList = list(categoryNames)
valueList = [0.0] * len(nameList)
extraNames : list = []
extraValues: list = []
for sp in speakerNames:
found = False
for i, _ in enumerate(nameList):
if sp in categorySelections[i]:
valueList[i] += su.sumTimes(currAnnotation.subset([sp]))
found = True
break
if not found:
extraNames.append(sp)
extraValues.append(su.sumTimes(currAnnotation.subset([sp])))
if extraNames:
pairs = sorted(zip(extraNames, extraValues), key=lambda p: p[0])
extraNames, extraValues = map(list, zip(*pairs))
else:
extraNames, extraValues = [], []
df4 = pd.DataFrame({"values": valueList + extraValues, "names": nameList + extraNames})
return df4, nameList, valueList, extraNames, extraValues
def build_df5(oneVoice, multiVoice, sumNoVoice, sumOneVoice, sumMultiVoice, currTotalTime):
"""Hierarchical voice-category DataFrame for sunburst / treemap."""
speakerList, timeList = su.sumTimesPerSpeaker(oneVoice)
multiSpeakerList, multiTimeList = su.sumMultiTimesPerSpeaker(multiVoice)
speakerList = list(speakerList) if speakerList else []
timeList = list(timeList) if timeList else []
multiSpeakerList = list(multiSpeakerList) if multiSpeakerList else []
multiTimeList = list(multiTimeList) if multiTimeList else []
summativeMulti = sum(multiTimeList) if multiTimeList else 1
safeOneVoice = sumOneVoice if sumOneVoice > 0 else 1
base = [sumNoVoice / currTotalTime, sumOneVoice / currTotalTime, sumMultiVoice / currTotalTime]
timeStrings = su.timeToString(timeList) if timeList else []
multiTimeStrings = su.timeToString(multiTimeList) if multiTimeList else []
if isinstance(timeStrings, str):
timeStrings = [timeStrings]
if isinstance(multiTimeStrings, str):
multiTimeStrings = [multiTimeStrings]
n_ov = len(speakerList)
n_mv = len(multiSpeakerList)
return pd.DataFrame({
"ids": ["NV", "OV", "MV"] + [f"OV_{i}" for i in range(n_ov)] + [f"MV_{i}" for i in range(n_mv)],
"labels": ["No Voice", "One Voice", "Multi Voice"] + speakerList + multiSpeakerList,
"parents": ["", "", ""] + ["OV"] * n_ov + ["MV"] * n_mv,
"parentNames": ["Total", "Total", "Total"] + ["One Voice"] * n_ov + ["Multi Voice"] * n_mv,
"values": [sumNoVoice, sumOneVoice, sumMultiVoice] + timeList + multiTimeList,
"valueStrings": [
su.timeToString(sumNoVoice),
su.timeToString(sumOneVoice),
su.timeToString(sumMultiVoice),
] + timeStrings + multiTimeStrings,
"percentiles": [b * 100 for b in base]
+ [(t * 100) / safeOneVoice * base[1] for t in timeList]
+ [(t * 100) / summativeMulti * base[2] for t in multiTimeList],
"parentPercentiles": [b * 100 for b in base]
+ [(t * 100) / safeOneVoice for t in timeList]
+ [(t * 100) / summativeMulti for t in multiTimeList],
})
def build_df2(df4_names, df4_values, currTotalTime):
"""Percentage-of-total DataFrame (used by the bar chart tab)."""
return pd.DataFrame({
"values": [100 * v / currTotalTime for v in df4_values],
"names": df4_names,
})
# ---------------------------------------------------------------------------
# Plotly figure builders
# ---------------------------------------------------------------------------
def _save_fig(fig, *paths):
"""Try to write fig to each path; silently skip on failure."""
for path in paths:
try:
fig.write_image(path)
except Exception:
pass
def build_fig_pie1(df3, catTypeColors):
"""Voice category pie chart."""
fig = go.Figure()
fig.update_layout(
title_text="Percentage of each Voice Category",
colorway=catTypeColors,
**TRANSPARENT_BG,
)
fig.add_trace(go.Pie(values=df3["values"], labels=df3["names"], sort=False))
return fig
def build_fig_pie2(df4, speakerNames, speakerColors, catColors, get_display_name_fn, currFile):
"""Speaker / category pie chart."""
df4 = df4.copy()
figColors = [
speakerColors[list(speakerNames).index(n)]
for n in df4["names"] if n in speakerNames
]
df4["names"] = df4["names"].apply(lambda s: get_display_name_fn(s, currFile))
fig = go.Figure()
fig.update_layout(
title_text="Percentage of Speakers and Custom Categories",
colorway=catColors + figColors,
**TRANSPARENT_BG,
)
fig.add_trace(go.Pie(values=df4["values"], labels=df4["names"], sort=False))
return fig
def build_fig_sunburst(df5, catTypeColors, speakerColors, get_display_name_fn, currFile):
"""Sunburst voice-category chart."""
df5 = df5.copy()
df5["labels"] = df5["labels"].apply(lambda s: get_display_name_fn(s, currFile))
df5["parentNames"] = df5["parentNames"].apply(lambda s: get_display_name_fn(s, currFile))
fig = px.sunburst(
df5,
branchvalues="total",
names="labels", ids="ids", parents="parents",
values="percentiles",
custom_data=["labels", "valueStrings", "percentiles", "parentNames", "parentPercentiles"],
color="labels",
title="Percentage of each Voice Category with Speakers",
color_discrete_sequence=catTypeColors + speakerColors,
)
fig.update_traces(hovertemplate="<br>".join([
"<b>%{customdata[0]}</b>",
"Duration: %{customdata[1]}s",
"Percentage of Total: %{customdata[2]:.2f}%",
"Parent: %{customdata[3]}",
"Percentage of Parent: %{customdata[4]:.2f}%",
]))
fig.update_layout(**TRANSPARENT_BG)
return fig
def build_fig_treemap(df5, catTypeColors, speakerColors, get_display_name_fn, currFile):
"""Treemap voice-category chart."""
df5 = df5.copy()
df5["labels"] = df5["labels"].apply(lambda s: get_display_name_fn(s, currFile))
df5["parentNames"] = df5["parentNames"].apply(lambda s: get_display_name_fn(s, currFile))
fig = px.treemap(
df5,
branchvalues="total",
names="labels", parents="parents", ids="ids",
values="percentiles",
custom_data=["labels", "valueStrings", "percentiles", "parentNames", "parentPercentiles"],
color="labels",
title="Division of Speakers in each Voice Category",
color_discrete_sequence=catTypeColors + speakerColors,
)
fig.update_traces(hovertemplate="<br>".join([
"<b>%{customdata[0]}</b>",
"Duration: %{customdata[1]}s",
"Percentage of Total: %{customdata[2]:.2f}%",
"Parent: %{customdata[3]}",
"Percentage of Parent: %{customdata[4]:.2f}%",
]))
fig.update_layout(**TRANSPARENT_BG)
return fig
def build_fig_timeline(speakers_dataFrame, currTotalTime, speakerColors, get_display_name_fn, currFile):
"""Gantt-style speaker timeline."""
df = speakers_dataFrame.copy()
df["Resource"] = df["Resource"].apply(lambda s: get_display_name_fn(s, currFile))
base = dt.datetime.combine(dt.date.today(), dt.time.min)
def to_audio_dt(s):
if isinstance(s, (dt.datetime, pd.Timestamp)):
midnight = s.replace(hour=0, minute=0, second=0, microsecond=0)
seconds = (s - midnight).total_seconds()
else:
seconds = float(s)
return base + dt.timedelta(seconds=seconds)
df["Start"] = df["Start"].apply(to_audio_dt)
df["Finish"] = df["Finish"].apply(to_audio_dt)
fig = px.timeline(
df, x_start="Start", x_end="Finish", y="Resource", color="Resource",
title="Timeline of Audio with Speakers",
color_discrete_sequence=speakerColors,
)
fig.update_yaxes(autorange="reversed")
h = int(currTotalTime // 3600)
m = int(currTotalTime % 3600 // 60)
s = int(currTotalTime % 60)
ms= int(currTotalTime * 1_000_000 % 1_000_000)
time_max = dt.time(h, m, s, ms)
fig.update_layout(
xaxis_tickformatstops=[
dict(dtickrange=[None, 1000], value="%H:%M:%S.%L"),
dict(dtickrange=[1000, None], value="%H:%M:%S"),
],
xaxis=dict(range=[
dt.datetime.combine(dt.date.today(), dt.time.min),
dt.datetime.combine(dt.date.today(), time_max),
]),
xaxis_title="Time",
yaxis_title="Speaker",
legend_title=None,
legend={"traceorder": "reversed"},
yaxis={"showticklabels": False},
**TRANSPARENT_BG,
)
return fig
def build_fig_bar(df2, catColors, speakerColors, get_display_name_fn, currFile):
"""Horizontal bar chart — time spoken per speaker."""
df2 = df2.copy()
df2["names"] = df2["names"].apply(lambda s: get_display_name_fn(s, currFile))
fig = px.bar(
df2, x="values", y="names", color="names", orientation="h",
custom_data=["names", "values"],
title="Time Spoken by each Speaker",
color_discrete_sequence=catColors + speakerColors,
)
fig.update_xaxes(ticksuffix="%")
fig.update_yaxes(autorange="reversed")
fig.update_layout(
xaxis_title="Percentage Time Spoken",
yaxis_title=None,
showlegend=False,
yaxis={"showticklabels": True},
**TRANSPARENT_BG,
)
fig.update_traces(hovertemplate="<br>".join([
"<b>%{customdata[0]}</b>",
"Percentage of Time: %{customdata[1]:.2f}%",
]))
return fig
# ---------------------------------------------------------------------------
# Multi-file summary DataFrames
# ---------------------------------------------------------------------------
def build_multifile_category_df(validNames, results, summaries, categories, categorySelect):
"""Build df6 (category breakdown per file) for the multi-file expander."""
df6_dict = {"files": validNames}
allCategories = copy.deepcopy(categories)
for fn in validNames:
currAnnotation, _ = results[fn]
catSummary, extraCats = su.calcCategories(currAnnotation, categorySelect[fn])
summaries[fn]["categories"] = (catSummary, extraCats)
for extra in extraCats:
df6_dict.setdefault(extra, [])
if extra not in allCategories:
allCategories.append(extra)
for category in categories:
df6_dict.setdefault(category, [])
for fn in validNames:
summary, extras = summaries[fn]["categories"]
theseCategories = categories + extras
for j, timeSlots in enumerate(summary):
df6_dict[theseCategories[j]].append(
sum(t.duration for _, t in timeSlots) / results[fn][1]
)
for category in allCategories:
if category not in theseCategories:
df6_dict[category].append(0)
return pd.DataFrame(df6_dict), allCategories
def build_multifile_voice_df(validNames, summaries):
"""Build df7 (no/one/multi voice percentages per file) for the multi-file expander."""
voiceNames = ["No Voice", "One Voice", "Multi Voice"]
df7_dict = {"files": validNames}
for name in voiceNames:
df7_dict[name] = []
for fn in validNames:
partial = summaries[fn]["df5"]
for i, name in enumerate(voiceNames):
df7_dict[name].append(partial["percentiles"][i])
return pd.DataFrame(df7_dict), voiceNames
|