metadata
license: mit
pretty_name: yt transcripts on sn13 beginning
size_categories:
- 10K<n<100K


ποΈ YouTube Transcripts Dataset
This dataset provides high-quality transcripts from 26,241 public YouTube videos, meticulously collected and formatted for research and development in natural language processing (NLP), summarization, and language modeling.
π¦ Dataset Summary
- Total Videos: 26,241
- Total Hours: ~6,886.84
- Language Coverage: Multilingual with translation to English(details below)
- Storage Format: Parquet
- File Splits: 3 files, each β€10,000 rows
- Created By: SN13
- Powered By: Bittensor
π§± Schema
Each record represents one YouTube video with metadata and its full transcript:
Column | Type | Description |
---|---|---|
video_id |
string |
YouTube video ID |
title |
string |
Video title |
channel_id |
string |
Channel's unique ID |
channel_name |
string |
Display name of the channel |
url |
string |
Direct link to the video |
transcript |
list |
List of segments with start/end time and text |
language |
string |
Language code (e.g., en , fr , etc.) |
duration_seconds |
int64 |
Duration of the video in seconds |
upload_date.$date |
string |
Video upload date in ISO format |
π¬ Transcript Format
Each transcript is a list of time-aligned text segments:
[
{ "start": "0.760", "end": "4.600", "text": "Welcome to the channel." },
{ "start": "4.600", "end": "8.320", "text": "Let's dive into the details..." }
]