--- viewer: false pretty_name: "Clean Podcast & Movie Teacher Subsets (48 kHz)" language: - ms - en - zh - ta task_categories: - audio-to-audio tags: - speech - speech-restoration - speech-enhancement - dnsmos - 48khz - podcast - malaysia - singapore size_categories: - 10K []_.wav`. **Audio format:** PCM signed 16-bit, 48 000 Hz, mono, 15 s non-overlapping chunks. **Languages:** predominantly Malay and English (incl. Singlish/Manglish), with Mandarin and Tamil present. ## How it was built For each source repo: download the archive (HF xet), selectively extract audio up to a duration budget, then per file: `ffmpeg`-decode → 48 kHz mono → 15 s non-overlapping chunks → score each chunk with DNSMOS P.835 → keep `bak ≥ 3.644` as 48 kHz PCM_16 wav. Clean chunks are zipped (flat, ≤ 5 GB parts) and uploaded here. (Builder: `prepare_podcast_clean.py` in the Sidon call-centre pipeline.) ## Usage Download with the fast **xet** backend, then unzip (parts are independent): ```python import glob, os, zipfile os.environ["HF_XET_HIGH_PERFORMANCE"] = "1" from huggingface_hub import snapshot_download # grab one subset (or use allow_patterns=["*.zip"] for everything) d = snapshot_download( "Scicom-intl/sidon-callcentre-podcast", repo_type="dataset", allow_patterns=["podcast_sg_*.zip"], ) os.makedirs("podcast_sg", exist_ok=True) for z in sorted(glob.glob(f"{d}/podcast_sg_*.zip")): with zipfile.ZipFile(z) as zf: zf.extractall("podcast_sg") # flat *.wav land here ``` For parallel (distributed) extraction of all parts, see `fetch_podcast_clean.py` in the Sidon call-centre pipeline (xet download + multiprocessing unzip). ## Provenance & intended use Derived from publicly available YouTube audio (via the `malaysia-ai/*-youtube` collections), segmented and DNSMOS-filtered for **research use** as clean speech-restoration teachers. No speaker labels or transcripts are included. If you are a rights holder and want content removed, please open a discussion on this repository.