Youtube / README.md
ZelonPrograms's picture
Create README.md
bdc4e77 verified

YouTube Transcripts Dataset

This dataset contains English transcripts (manual or auto-generated) scraped from top videos of selected YouTube channels. The data includes video metadata and full video transcripts suitable for natural language processing tasks such as language modeling, summarization, and topic analysis.

Dataset Contents

Each entry in the dataset is a JSON object with the following fields:

  • video_id (string): The unique YouTube video ID.
  • video_url (string): Full URL to the YouTube video.
  • title (string): The video title.
  • views (int): Number of views the video has.
  • upload_date (string): The upload date in YYYY-MM-DD format.
  • transcript (string): The full English transcript text of the video.

The dataset is stored in JSON Lines format (.jsonl), where each line is a separate JSON object.

Notice

Copyright Disclaimer:
I do not own the copyright to the original video content or transcripts. This dataset is compiled purely for educational and research purposes only.

Usage

You can load this dataset easily using the Hugging Face Datasets library:

from datasets import load_dataset

dataset = load_dataset("ZelonPrograms/Youtube")

print(dataset["train"][0])