about summary refs log tree commit diff
path: root/youtube_dl/extractor/globalplayer.py
Commit message (Collapse)AuthorAgeFilesLines
* [InfoExtractor] Add `_match_valid_url()` class method and refactordirkf2023-07-191-6/+0
| | | | | | | * API compatible with yt-dlp * also support Sequence of patterns in _VALID_URL * one place to compile _VALID_URL * TODO: remove existing extractor shims
* [InfoExtractor] Add search methods for Next/Nuxt.js from yt-dlpdirkf2023-07-191-19/+13
| | | | | | | | | | | | * add _search_nextjs_data(), from https://github.com/yt-dlp/yt-dlp/pull/1386 thanks selfisekai * add _search_nuxt_data(), from https://github.com/yt-dlp/yt-dlp/pull/1921, thanks Lesmiscore, pukkandan * add tests for the above * also fix HTML5 type recognition and tests, from https://github.com/yt-dlp/yt-dlp/commit/222a230871fe4fe63f35c49590379c9a77116819, thanks Lesmiscore * update extractors in PR using above, fix tests.
* [GlobalPlayer] Add site extractors back-ported from yt-dlpdirkf2023-07-191-0/+285
* from https://github.com/yt-dlp/yt-dlp/pull/6903, thanks garret1317