Skip to main content

Extract YouTube metadata and subtitles into JSON and JSONL outputs.

Project description

ytcap

ytcap is a Python CLI project for extracting video metadata and subtitle files from YouTube video, batch, and playlist sources, then turning them into reusable JSON and JSONL outputs.

It is designed for workflows where you have YouTube video URLs, video IDs, or playlists and want structured metadata plus subtitles for search, indexing, dataset preparation, education, or analysis.

Project Status

This repository is in an early planning and implementation stage. The first target release is:

0.1.0

Currently implemented:

  • Importable Python package scaffold.
  • Package version exposed as ytcap.__version__.
  • Basic CLI entry point with ytcap --help and ytcap --version.
  • CLI command structure for inspect, video, and export.
  • batch command to process multiple video URLs or IDs from a text file, with run manifest logging, --resume and --skip-existing support.
  • yt-dlp adapter support for inspect metadata extraction.
  • Normalized video metadata mapping and inspect JSON summary output.
  • Tested subtitle source selection for manual, auto, and any normalized tracks.
  • Controlled subtitle format validation for srt and vtt.
  • Standard output directory layout creation for video --out.
  • video command metadata JSON writing and selected SRT/VTT subtitle file download.
  • SRT/VTT cue parsing, cue-level JSONL writer helpers, and basic sentence-level segmentation helpers.
  • export command conversion of existing SRT/VTT files to cue-level or sentence-level JSONL.
  • playlist command to process videos inside a YouTube playlist with --limit, --start, and --end range controls, run manifest logging, --resume, --skip-existing, and --dry-run.
  • Safe validation for dynamic output filename parts to prevent path traversal from user input or extractor metadata.

Core Decisions

Decision Target
Language Python
Minimum Python version Python 3.11+
CLI approach Standard library first: argparse
Test approach Standard library first: unittest
YouTube Data API Not used
Metadata and subtitle extraction yt-dlp>=2026.06.09 is the core extractor dependency
Video/audio downloads Out of scope for the MVP
Output format JSON for metadata, JSONL for segment and sentence output
Distribution target PyPI and pipx install ytcap
Additional dependencies Require justification and approval before being added

Planned Capabilities

The MVP is intended to:

  • Accept a single YouTube video URL or video ID.
  • Save normalized video metadata as JSON.
  • Find subtitles for a requested language.
  • Prefer manual subtitles when available, with optional fallback to automatic subtitles.
  • Save subtitles as SRT or VTT.
  • Convert subtitles to cue-level or sentence-level JSONL.
  • Report videos with missing or failed subtitle extraction.

Later releases may add:

  • A dedicated retry command for failed records.
  • PyPI publication.
  • Automated test and release workflows through GitHub Actions.

Non-Goals

ytcap intentionally does not:

  • Use the official YouTube Data API.
  • Manage API keys or OAuth flows.
  • Download video or audio files as an MVP goal.
  • Redistribute YouTube content or bypass access restrictions.
  • Start with advanced NLP sentence segmentation libraries; simple, testable heuristics come first.

Planned CLI Examples

These commands show the intended user experience. Some commands may not be implemented yet. The current inspect command uses yt-dlp for metadata and subtitle availability summaries. The video command extracts metadata through yt-dlp, writes normalized metadata JSON, selects a matching subtitle track, and saves the selected SRT/VTT subtitle file. SRT/VTT cue parsers, cue-level JSONL writer helpers, and basic punctuation-based sentence segmentation helpers are wired into the export command for existing subtitle files.

Inspect One Video

ytcap inspect --url "https://www.youtube.com/watch?v=VIDEO_ID"

This should answer:

  • Is the video reachable?
  • Can metadata be extracted?
  • Which subtitle languages are available?
  • Are subtitles manual, automatic, or both?

Extract Metadata and Subtitles

ytcap video --url "https://www.youtube.com/watch?v=VIDEO_ID" --lang en --source any --format srt --out ./data
Part Meaning
ytcap CLI application
video Single-video processing command
--url Video URL
--lang en Request English subtitles
--source any Try manual subtitles first, then automatic subtitles
--format srt Save subtitles as SRT
--out ./data Write outputs under ./data

Implemented source selection behavior uses exact language and format matches: manual selects only manual subtitles, auto selects only automatic subtitles, and any tries manual first before falling back to automatic subtitles. Implemented subtitle format validation currently accepts srt and vtt; other values return an UNSUPPORTED_FORMAT error before extraction work starts. When run without --dry-run, video writes normalized metadata to videos/{video_id}.info.json and the selected subtitle file to subtitles/{video_id}.{lang}.{source}.{format} under the output directory. If the requested subtitle cannot be selected or downloaded, the command returns a controlled error without leaving a new partial metadata file behind.

List Available Subtitles

ytcap inspect --url "https://www.youtube.com/watch?v=VIDEO_ID" --list-subs

Convert Existing Subtitles to JSONL

ytcap export --input ./data/subtitles/VIDEO_ID.en.manual.srt --segments cue --out ./data/normalized
ytcap export --input ./data/subtitles --segments sentence --out ./data/normalized

The export command reads existing .srt and .vtt files and writes JSONL records to {video_id}.{lang}.{segments}.jsonl under the output directory. It infers video_id, language, and source from names such as VIDEO_ID.en.manual.srt; when the source is missing, JSONL records use "source":"unknown". --video-id and --lang may override metadata for a single file input.

Dynamic filename parts such as video ID, language, source, format, segment type, and run ID are validated before paths are built. Empty values, path separators, control characters, absolute paths, . and .. are rejected.

Process a Batch File

ytcap batch --input videos.txt --lang en --source any --format srt --resume --skip-existing --out ./data

This command parses the input file and processes each URL/ID. It creates a run manifest under runs/{run_id}.manifest.json keeping track of execution statistics, output files, and errors. Failed attempts are appended to failed/failed.jsonl. --resume skips entries completed in the latest manifest and retries previous failures, while --skip-existing skips videos whose metadata and subtitle files already exist for the requested language, source, and format. --dry-run reports the batch plan without writing files or creating output directories.

Batch Input File Format

The --input file for the batch command is a plain text file containing one YouTube video URL or video ID per line.

  • Empty lines and lines containing only whitespace are ignored.
  • Lines starting with # (with optional leading whitespace) are ignored as comment lines.
  • Inline comments starting with # are supported, and the comment text plus any preceding whitespace are ignored.

Example input file:

# This is a comment line
dQw4w9WgXcQ                  # Rick Astley - Never Gonna Give You Up
https://youtu.be/jNQXAC9IVRw # Another video URL

Process a Playlist

ytcap playlist --url "https://www.youtube.com/playlist?list=PLAYLIST_ID" --start 1 --limit 50 --lang en --source any --format srt --out ./data

The playlist command uses yt-dlp flat playlist extraction to collect video entries without the official YouTube Data API, then processes each video with the same metadata and subtitle flow as video. --start is 1-based, --end is inclusive, and --limit caps the selected range. --resume continues only from a matching playlist run manifest, while --skip-existing skips videos only when matching metadata and subtitle files already exist.

Output Layout

data/
  videos/
    VIDEO_ID.info.json
  subtitles/
    VIDEO_ID.en.manual.srt
  normalized/
    VIDEO_ID.en.cue.jsonl
  runs/
    RUN_ID.manifest.json
  failed/
    failed.jsonl

Example cue-level JSONL line:

{"schema_version":"0.1","type":"cue","video_id":"VIDEO_ID","language":"en","source":"manual","start":1.0,"end":3.5,"text":"Example subtitle text.","cue_index":1}

Sentence-level segmentation uses a simple standard-library heuristic that splits on ., ?, and !. Timing is marked with a strategy such as cue_exact, cue_merge, heuristic, or unknown because sentence boundaries can fall inside or across subtitle cues.

Documentation

File Purpose
USAGE.md Usage boundaries, limitations, and responsible use notes
CLI_REFERENCE.md Planned commands, flags, behavior, and error codes
OUTPUT_FORMAT.md Target JSON and JSONL output formats
RELEASE.md Packaging and release process
CONTRIBUTING.md Contributor expectations
SECURITY.md Security policy and sensitive data rules

Development Install

For local development, use Python 3.11 or newer:

python3 -m venv .venv
source .venv/bin/activate
python -m pip install -e .

This installs yt-dlp>=2026.06.09 as the runtime extractor dependency. Unit tests use fixtures and mocks instead of making real YouTube or network calls.

Smoke-test the current CLI:

ytcap --help
ytcap --version

Installation Target

The long-term installation target is:

pipx install ytcap

Expected usage:

ytcap --help
ytcap video --url "https://www.youtube.com/watch?v=VIDEO_ID" --lang en --source any

License

This project is planned for release under the MIT License. See LICENSE.md for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ytcap-0.1.0.tar.gz (32.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ytcap-0.1.0-py3-none-any.whl (41.0 kB view details)

Uploaded Python 3

File details

Details for the file ytcap-0.1.0.tar.gz.

File metadata

  • Download URL: ytcap-0.1.0.tar.gz
  • Upload date:
  • Size: 32.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for ytcap-0.1.0.tar.gz
Algorithm Hash digest
SHA256 716e6c1c56ae4b1576644b929e52c1cb8bed61845a3905f7c99d21acb02137fb
MD5 e6af77f867ae67115345bf02a3ad879a
BLAKE2b-256 8dcfb12fad71cfe430d8e9667146537a4fadcff845e850b0f9527ec5b5862aa2

See more details on using hashes here.

File details

Details for the file ytcap-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: ytcap-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.6

File hashes

Hashes for ytcap-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2542fb0cca59a0583f87ab12a98de0e4c9fc29a0ebb1e202d152aea0dffc7be0
MD5 c30b5cd2872807f142e566e42e343834
BLAKE2b-256 e501504f3015ebdf05bcb28a26b0834b547f79af8226d77ab137bddf19422c51

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page