pryscraper/templates/youtube-video.json
cryptorugmunch 8d25702eca chore(license): re-license to dual MIT (core) + BSL 1.1 (stealth)
Squashed from chore/license-relicense. Full message preserved in the
original branch commit bb77eb5. See ADR-0002 for the decision rationale.

Refs: ADR-0002, commit bb77eb5
2026-07-02 19:59:18 +02:00

47 lines
No EOL
1.1 KiB
JSON

{
"name": "YouTube Video",
"description": "Extract video details from YouTube watch pages",
"site": "youtube.com",
"category": "media",
"icon": "\u25b6\ufe0f",
"url_pattern": "*://www.youtube.com/watch*",
"schema": {
"name": "youtube_video",
"base_selector": "#above-the-fold",
"fields": [
{
"name": "title",
"selector": "h1",
"type": "text"
},
{
"name": "channel",
"selector": "#owner #channel-name",
"type": "text"
},
{
"name": "views",
"selector": ".view-count",
"type": "text",
"transform": "int"
},
{
"name": "likes",
"selector": "#top-level-buttons-computed ytd-toggle-button-renderer:first-child",
"type": "text"
},
{
"name": "publish_date",
"selector": "#info-strings yt-formatted-string",
"type": "text"
},
{
"name": "description",
"selector": "#description-inner",
"type": "text"
}
]
},
"_license": "MIT",
"_copyright": "Copyright (c) 2026 Rug Munch Media LLC"
}