freococo/mrtv_news_voices
π£οΈ Overview MRTV Voices is a large-scale Burmese speech dataset built from publicly available news broadcasts and programs aired on Myanma Radio and Television (MRTV) β the official state-run media channel of Myanmar. ποΈ It contains over 130,000 short audio clips (β117 hours) with aligned transcripts derived from auto-generated subtitles. This dataset captures: Formal Burmese used in government bulletins and official reports Clear pronunciation, enunciation, and pacing ββ¦ See the full description on the dataset page: https://huggingface.co/datasets/freococo/mrtv_news_voices.
π£οΈ Overview
MRTV Voices is a large-scale Burmese speech dataset built from publicly available news broadcasts and programs aired on Myanma Radio and Television (MRTV) β the official state-run media channel of Myanmar.
ποΈ It contains over 130,000 short audio clips (β117 hours) with aligned transcripts derived from auto-generated subtitles.
This dataset captures:
- Formal Burmese used in government bulletins and official reports
- Clear pronunciation, enunciation, and pacing β ideal for ASR training
- Diverse speech contexts: news reading, field reporting, interviews, and announcements
Whether you're working on:
- Automatic Speech Recognition (ASR)
- Language model fine-tuning
- Media analysis
- or Myanmar speech research
...MRTV Voices offers one of the most structured and scalable resources for developing Burmese AI systems.
π Dataset Structure
This dataset is packaged as a single .tar.gz archive (mrtv_voices_000001.tar.gz) using the WebDataset format, which is optimized for high-throughput streaming and model training.
Each audio-text pair includes:
- π§
.mp3β a short audio chunk (typically 1β6 seconds) - π
.jsonβ a rich metadata file containing the transcript and contextual info
All files are named using random UUIDs (e.g., d84f1e09f1ab4a79.mp3), and grouped flatly inside the archive.
π¦ Inside each .json file:
The dataset can be loaded using:
- π€ Hugging Face Datasets (
load_dataset(..., streaming=True)) - π§ WebDataset for PyTorch
- Custom Python scripts
π How to Use
You can stream this dataset directly using π€ datasets. Each sample contains both the transcript and full metadata.
from datasets import load_dataset
# The library automatically finds the .tar.gz shard in the repo
ds = load_dataset(
"freococo/mrtv_news_voices",
split="train",
streaming=True
)
# Iterate through the first 5 samples
for sample in ds.take(5):
# The transcript is a top-level feature for easy access
print(f"ποΈ Transcript: {sample['txt']}")
# The audio data is in the 'mp3' column
audio_data = sample['mp3']
audio_array = audio_data['array']
sampling_rate = audio_data['sampling_rate']
print(f"π§ Audio loaded with shape {audio_array.shape} and rate {sampling_rate} Hz")
# The 'json' column is ALREADY a Python dictionary
metadata = sample['json']
print(f"πΊ Channel: {metadata.get('channel')}")
print(f"π₯ Video URL: {metadata.get('video_url')}")
print("---")β οΈ Limitations
While this dataset offers broad coverage of Burmese speech and media clips, it is important to understand its limitations:
- Propagandistic content: MRTV is a state-run broadcaster currently operated by the military regime. Some content may contain nationalist, anti-democracy, anti-Western, or racially biased perspectives.
- Zero human correction: All transcriptions were scraped directly from TikTok auto-captions, with no manual editing. Around 25β35% may contain spelling errors, punctuation artifacts, or missing words.
- Censorship bias: Editorial control by the regime means some topics (e.g. dissent, protest) are absent or misrepresented.
- Speaker diversity: Most clips are from formal news or PR settings. Street speech, dialects, and youth slang are underrepresented.
- ASR challenges: Some captions have poor alignment or are missegmented, which could affect training quality unless filtered or fine-tuned.
β Why Itβs Still Useful
Despite the caveats:
Even if you discarded every noisy sample, youβd still have over 100,000 high-quality Burmese audio-text pairs β suitable for ASR training, forced alignment, or language model pretraining.
This is one of the largest open Burmese speech datasets ever released β with real voices, real pronunciation, and full metadata.
Use with care. Filter where needed. And always document your preprocessing steps when publishing derived models.
π License and Intent
This dataset is released under the Universal Public Domain Dedication (CC0 1.0 Universal) license.
All content was collected from the publicly accessible state-owned Myanmar Radio and Television (MRTV) channel on TikTok.
β οΈ Important Context
- MRTV is currently operated by the Myanmar military regime.
- Videos were produced using public funds, state media resources, and government-owned facilities.
- As such, the content belongs to the people of Myanmar β and should be available for open use, research, and analysis.
β You May:
- Use, modify, and redistribute this dataset.
- Train open-source or commercial AI models.
- Build tools that help preserve the Burmese language.
- Analyze, audit, or critique the media for public accountability.
β You May NOT:
- Misrepresent the source of the data.
- Use the voices or transcriptions to impersonate real people or endorse ideologies.
- Claim ownership of the original MRTV media content.
This dataset is shared in the public interest, for language accessibility, open research, and education.
It does not endorse any specific political regime, message, or actor.
Use responsibly, document your pipeline, and help make Burmese speech technology accessible to all.
π¬ Authorβs Note
This dataset was compiled, cleaned, and published by freococo, a Myanmar-born open-source advocate and AI researcher.
I receive no financial compensation for this work.
I built this dataset because:
- π§ Burmese (Myanmar) is still underrepresented in speech and language technology.
- π£ Our voices deserve to be part of global AI β not left behind.
- ποΈ Language preservation is resistance against cultural erasure.
MRTV is a controversial source β I understand that. *But speech is speech.*
And if we're training machines to listen, they must hear everyone.
This dataset includes laughter, announcements, news delivery, monologues, interviews, and everyday public speech from Myanmar.
Even if it's imperfect or biased β itβs real. It reflects how Burmese is spoken in state media, with clear pronunciation, varied cadence, and diverse speaker profiles.
Use this to build tools, evaluate speech systems, or simply understand how Burmese sounds in a formal media setting.
*This is not just about data β itβs about visibility, dignity, and linguistic equality.*
π«‘π²π²
π Citation
@misc{freococo2025mrtvvoices,
title = {MRTV Voices: A Burmese Speech Dataset from State Broadcasts},
author = {freococo},
year = {2025},
howpublished = {Hugging Face Datasets},
url = {https://huggingface.co/datasets/freococo/mrtv_voices}
}