Spaces:
Sleeping
Sleeping
File size: 16,890 Bytes
fda93d9 |
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 |
"""
Utility Functions Module
========================
Helper functions used across the system.
"""
from __future__ import annotations
import hashlib
import json
import logging
import os
import re
import time
from functools import wraps
from pathlib import Path
from typing import Any, List, Optional, Union
# =============================================================================
# Logging Setup
# =============================================================================
def setup_logger(
name: str = "MeetingTranscriber", level: int = logging.INFO, log_file: Optional[str] = None
) -> logging.Logger:
"""
Setup and return a logger instance.
Args:
name: Logger name
level: Logging level
log_file: Optional file path for logging
Returns:
Configured logger instance
"""
logger = logging.getLogger(name)
logger.setLevel(level)
# Console handler
console_handler = logging.StreamHandler()
console_handler.setLevel(level)
# Formatter
formatter = logging.Formatter(
"%(asctime)s - %(name)s - %(levelname)s - %(message)s", datefmt="%Y-%m-%d %H:%M:%S"
)
console_handler.setFormatter(formatter)
logger.addHandler(console_handler)
# File handler (optional)
if log_file:
os.makedirs(os.path.dirname(log_file), exist_ok=True)
file_handler = logging.FileHandler(log_file, encoding="utf-8")
file_handler.setLevel(level)
file_handler.setFormatter(formatter)
logger.addHandler(file_handler)
return logger
# =============================================================================
# Timing Utilities
# =============================================================================
def timer(func):
"""Decorator to measure function execution time"""
@wraps(func)
def wrapper(*args, **kwargs):
start_time = time.time()
result = func(*args, **kwargs)
end_time = time.time()
print(f"[Timer] {func.__name__} took {end_time - start_time:.2f} seconds")
return result
return wrapper
class Timer:
"""Context manager for timing code blocks"""
def __init__(self, name: str = "Block"):
self.name = name
self.start_time = None
self.end_time = None
def __enter__(self):
self.start_time = time.time()
return self
def __exit__(self, *args):
self.end_time = time.time()
self.elapsed = self.end_time - self.start_time
print(f"[Timer] {self.name} took {self.elapsed:.2f} seconds")
# =============================================================================
# File Utilities
# =============================================================================
def get_file_hash(filepath: Union[str, Path], algorithm: str = "md5") -> str:
"""
Calculate hash of a file.
Args:
filepath: Path to file
algorithm: Hash algorithm ('md5', 'sha256')
Returns:
Hex digest of file hash
"""
hash_func = hashlib.new(algorithm)
with open(filepath, "rb") as f:
for chunk in iter(lambda: f.read(8192), b""):
hash_func.update(chunk)
return hash_func.hexdigest()
def ensure_dir(path: Union[str, Path]) -> Path:
"""Ensure directory exists, create if not"""
path = Path(path)
path.mkdir(parents=True, exist_ok=True)
return path
def list_audio_files(
directory: Union[str, Path], extensions: Optional[List[str]] = None
) -> List[Path]:
"""
List all audio files in directory.
Args:
directory: Directory to search
extensions: List of extensions to include (default: common audio formats)
Returns:
List of audio file paths
"""
if extensions is None:
extensions = [".wav", ".mp3", ".flac", ".ogg", ".m4a", ".wma", ".aac"]
directory = Path(directory)
audio_files = []
for ext in extensions:
audio_files.extend(directory.glob(f"*{ext}"))
audio_files.extend(directory.glob(f"*{ext.upper()}"))
return sorted(audio_files)
def sanitize_filename(filename: str) -> str:
"""Remove invalid characters from filename"""
# Remove invalid characters
sanitized = re.sub(r'[<>:"/\\|?*]', "", filename)
# Replace spaces with underscores
sanitized = sanitized.replace(" ", "_")
# Remove multiple underscores
sanitized = re.sub(r"_+", "_", sanitized)
return sanitized.strip("_")
# =============================================================================
# JSON Utilities
# =============================================================================
def save_json(data: Any, filepath: Union[str, Path], indent: int = 2):
"""Save data to JSON file"""
filepath = Path(filepath)
filepath.parent.mkdir(parents=True, exist_ok=True)
with open(filepath, "w", encoding="utf-8") as f:
json.dump(data, f, ensure_ascii=False, indent=indent, default=str)
def load_json(filepath: Union[str, Path]) -> Any:
"""Load data from JSON file"""
with open(filepath, "r", encoding="utf-8") as f:
return json.load(f)
# =============================================================================
# Text Utilities
# =============================================================================
def format_duration(seconds: float) -> str:
"""Format duration in seconds to human-readable string"""
if seconds < 0:
return "0:00"
hours = int(seconds // 3600)
minutes = int((seconds % 3600) // 60)
secs = int(seconds % 60)
if hours > 0:
return f"{hours}:{minutes:02d}:{secs:02d}"
return f"{minutes}:{secs:02d}"
def format_timestamp(seconds: float) -> str:
"""Format timestamp for document display"""
seconds = max(0, seconds)
hours = int(seconds // 3600)
minutes = int((seconds % 3600) // 60)
secs = int(seconds % 60)
if hours > 0:
return f"{hours:02d}:{minutes:02d}:{secs:02d}"
return f"{minutes:02d}:{secs:02d}"
def truncate_text(text: str, max_length: int = 100, suffix: str = "...") -> str:
"""Truncate text to maximum length"""
if len(text) <= max_length:
return text
return text[: max_length - len(suffix)] + suffix
def clean_text(text: str) -> str:
"""Clean text: normalize whitespace, remove special chars"""
if not text:
return ""
# Normalize whitespace
text = " ".join(text.split())
# Remove control characters
text = re.sub(r"[\x00-\x1f\x7f-\x9f]", "", text)
return text.strip()
# =============================================================================
# Progress Utilities
# =============================================================================
class ProgressTracker:
"""Simple progress tracker for long operations"""
def __init__(self, total: int, description: str = "Processing"):
self.total = total
self.current = 0
self.description = description
self.start_time = time.time()
def update(self, n: int = 1):
"""Update progress by n steps"""
self.current += n
self._print_progress()
def _print_progress(self):
"""Print progress bar"""
percent = self.current / self.total * 100 if self.total > 0 else 0
elapsed = time.time() - self.start_time
# Estimate remaining time
if self.current > 0:
eta = elapsed / self.current * (self.total - self.current)
eta_str = format_duration(eta)
else:
eta_str = "?"
bar_length = 30
filled = int(bar_length * self.current / self.total) if self.total > 0 else 0
bar = "█" * filled + "░" * (bar_length - filled)
print(
f"\r[{bar}] {percent:5.1f}% ({self.current}/{self.total}) ETA: {eta_str} ",
end="",
flush=True,
)
if self.current >= self.total:
print() # New line at completion
def finish(self):
"""Mark progress as complete"""
self.current = self.total
self._print_progress()
elapsed = time.time() - self.start_time
print(f"[{self.description}] Completed in {format_duration(elapsed)}")
# =============================================================================
# Validation Utilities
# =============================================================================
def validate_audio_file(filepath: Union[str, Path]) -> bool:
"""
Validate that file exists and is a supported audio format.
Args:
filepath: Path to audio file
Returns:
True if valid, raises exception otherwise
"""
filepath = Path(filepath)
if not filepath.exists():
raise FileNotFoundError(f"Audio file not found: {filepath}")
supported_formats = {".wav", ".mp3", ".flac", ".ogg", ".m4a", ".wma", ".aac"}
if filepath.suffix.lower() not in supported_formats:
raise ValueError(
f"Unsupported audio format: {filepath.suffix}. "
f"Supported: {', '.join(supported_formats)}"
)
return True
def validate_ground_truth_file(filepath: Union[str, Path]) -> bool:
"""
Validate ground truth file format.
Args:
filepath: Path to ground truth file
Returns:
True if valid
"""
filepath = Path(filepath)
if not filepath.exists():
raise FileNotFoundError(f"Ground truth file not found: {filepath}")
supported_formats = {".txt", ".json", ".rttm"}
if filepath.suffix.lower() not in supported_formats:
raise ValueError(
f"Unsupported ground truth format: {filepath.suffix}. "
f"Supported: {', '.join(supported_formats)}"
)
return True
# =============================================================================
# Ground Truth Parsing
# =============================================================================
def parse_transcript_file(filepath: Union[str, Path]) -> str:
"""
Parse transcript file (plain text).
Args:
filepath: Path to transcript file
Returns:
Transcript text
"""
with open(filepath, "r", encoding="utf-8") as f:
return f.read().strip()
def parse_rttm_file(filepath: Union[str, Path]) -> List[tuple]:
"""
Parse RTTM (Rich Transcription Time Marked) file for diarization ground truth.
RTTM format:
SPEAKER <file_id> <channel> <start> <duration> <NA> <NA> <speaker_id> <NA> <NA>
Args:
filepath: Path to RTTM file
Returns:
List of (speaker_id, start, end) tuples
"""
segments = []
with open(filepath, "r", encoding="utf-8") as f:
for line in f:
line = line.strip()
if not line or line.startswith("#"):
continue
parts = line.split()
if len(parts) >= 8 and parts[0] == "SPEAKER":
start = float(parts[3])
duration = float(parts[4])
speaker_id = parts[7]
segments.append((speaker_id, start, start + duration))
return segments
# -----------------------------------------------------------------------------
# Helpers for building RTTM from speaker-labeled transcripts
# -----------------------------------------------------------------------------
def parse_speaker_labeled_text(text: str) -> List[Tuple[str, str]]:
"""Parse speaker-labeled transcript text into a list of (speaker, text).
Recognizes lines that start with `Name:` (case-insensitive) as speaker labels.
Consecutive non-label lines are appended to the current speaker utterance.
Returns empty list if input is empty.
"""
label_re = re.compile(r"^\s*([^:\n\r]{1,80}):\s*(.*)$")
items: List[Tuple[str, str]] = []
cur_speaker = None
cur_lines: List[str] = []
for raw in text.splitlines():
line = raw.rstrip("\n\r")
m = label_re.match(line)
if m:
if cur_speaker is not None:
items.append((cur_speaker, " ".join(l.strip() for l in cur_lines if l.strip())))
cur_speaker = m.group(1).strip()
first = m.group(2).strip()
cur_lines = [first] if first else []
else:
if line.strip():
cur_lines.append(line.strip())
if cur_speaker is not None:
items.append((cur_speaker, " ".join(l.strip() for l in cur_lines if l.strip())))
return items
def align_reference_to_segments(
utterances: List[Tuple[str, str]],
hyp_segments: List[object],
min_score: float = 0.20,
) -> List[Tuple[str, float, float]]:
"""Align reference speaker utterances to hypothesis transcript segments.
Strategy (simple heuristic):
- Iterate utterances in order and try to find the best contiguous window of
hypothesis segments (starting from last matched index) whose combined
words have maximal overlap with the reference utterance words.
- Overlap score = intersection_words / reference_word_count.
- Accept match if score >= min_score; assign start/end from matched segments.
Returns list of (speaker_id, start, end).
"""
if not utterances or not hyp_segments:
return []
# Precompute normalized words for hypothesis segments
hyp_words = []
for seg in hyp_segments:
txt = getattr(seg, "text", "") or ""
words = [w.lower() for w in re.findall(r"\w+", txt)]
hyp_words.append(words)
results: List[Tuple[str, float, float]] = []
cur_idx = 0
for speaker, ref_text in utterances:
ref_tokens = [w.lower() for w in re.findall(r"\w+", ref_text)]
if not ref_tokens:
continue
ref_set = set(ref_tokens)
best_score = 0.0
best_j = None
best_k = None
# Search windows starting at cur_idx
for j in range(cur_idx, len(hyp_segments)):
combined = []
for k in range(j, len(hyp_segments)):
combined.extend(hyp_words[k])
if not combined:
continue
comb_set = set(combined)
score = len(ref_set & comb_set) / max(1, len(ref_set))
if score > best_score:
best_score = score
best_j = j
best_k = k
# early break if we reach high confidence
if score >= 0.75:
break
if best_j is not None and best_score >= min_score:
start = float(getattr(hyp_segments[best_j], "start", 0.0))
end = float(getattr(hyp_segments[best_k], "end", start))
spk = re.sub(r"[^0-9A-Za-z_\-]", "_", speaker)
results.append((spk, start, end))
cur_idx = best_k + 1
else:
# If no match found, skip (could be silence/non-speech)
continue
return results
def create_ground_truth_template(
output_path: Union[str, Path], audio_duration: float, num_speakers: int = 2
):
"""
Create template ground truth files for annotation.
Args:
output_path: Output directory
audio_duration: Duration of audio in seconds
num_speakers: Expected number of speakers
"""
output_path = Path(output_path)
output_path.mkdir(parents=True, exist_ok=True)
# Create transcript template
transcript_template = """# Ground Truth Transcript
# Instruksi: Tulis transkripsi lengkap audio di bawah ini
# Hapus baris komentar (yang dimulai dengan #) sebelum evaluasi
[Tulis transkripsi di sini...]
"""
with open(output_path / "transcript.txt", "w", encoding="utf-8") as f:
f.write(transcript_template)
# Create RTTM template
rttm_template = f"""# Ground Truth Diarization (RTTM Format)
# Format: SPEAKER <file_id> <channel> <start_time> <duration> <NA> <NA> <speaker_id> <NA> <NA>
#
# Contoh:
# SPEAKER audio 1 0.0 5.5 <NA> <NA> SPEAKER_00 <NA> <NA>
# SPEAKER audio 1 5.5 3.2 <NA> <NA> SPEAKER_01 <NA> <NA>
#
# Audio duration: {audio_duration:.2f} seconds
# Expected speakers: {num_speakers}
#
# Tambahkan baris SPEAKER di bawah:
"""
with open(output_path / "diarization.rttm", "w", encoding="utf-8") as f:
f.write(rttm_template)
print(f"Ground truth templates created in: {output_path}")
|