aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-11-12[generic] Add KVS player extractiondirkf
2022-11-11[common:jwplayer] Improve jwplayer extraction and parsing (#31000)dirkf
* don't crash parser if jwplayer_data is invalid (empty, or no formats) * use `label` in `sources[n]` as `format_id` * relax `jwplayer().setup(...)` RE (also rework PR #27274 enhancement) * detect more manifest formats in _parse_jwplayer_formats() (from PR #29596) * improve metadata extraction (from PR #25433) * remember URLs in a set * use parse_resolution() in format * extract filesize in format (from yt-dlp) Co-authored-by: kikuyan <kikuyan@users.noreply.github.com> Co-authored-by: martin54 <martin54@users.noreply.github.com>
2022-11-09[PeekVids, PlayVids] Add new extractor (#29765)Moises Lima
* Merge back-port from yt-dlp * Merge features from PR #29798 * Improve metadata extraction Co-authored-by: dirkf <fieldhouse@gmx.net> Co-authored by: AXDOOMER
2022-11-04[extractor/ceskatelevize] Back-port extractor from yt-dlp, etc (#30713)dirkf
* back-port extractor, removing CeskaTelevizePoradyIE * follow redirect URL * support liveBroadcast and videobonusDetail in __NEXT__ data * return single video for singleton playlist * fix/add tests
2022-11-03[utils] Backport traverse_obj (etc) from yt-dlp (#31156)Andrei Lebedev
* Backport traverse_obj and closely related function from yt-dlp (code by pukkandan) * Backport LazyList, variadic(), try_call (code by pukkandan) * Recast using yt-dlp's newer traverse_obj() implementation and tests (code by grub4k) * Add tests for Unicode case folding support matching Py3.5+ (requires f102e3d) * Improve/add tests for variadic, try_call, join_nonempty Co-authored-by: dirkf <fieldhouse@gmx.net>
2022-11-02[compat] Work around in case folding for narrow Python builddirkf
Resolves #31324.
2022-11-01[compat] Add test for compat_casefold()dirkf
2022-11-01[compat] Add test for compat_casefold()dirkf
2022-11-01[compat] Reformat casefold.py for easier updatingdirkf
2022-11-01[compat] Unify unicode/str compat and move updirkf
2022-10-31[compat] Add compat_casefold and compat_re_Match, for traverse_obj() portdirkf
2022-10-31[compat] Add Python 2 Unicode casefold using a trivial wrapper around ↵dirkf
icu/CaseFolding.txt
2022-10-30[netease] Support urls shared from mobile app (#31304)Xie Yanbo
Co-authored-by: dirkf <fieldhouse@gmx.net>
2022-10-30[netease] Impove error handling (#31303)Xie Yanbo
* add warnings for users outside of China * skip empty song urls Co-authored-by: dirkf <fieldhouse@gmx.net>
2022-10-27[Vimeo] Update variable name in hydration JSON patterndirkf
Fixes #31311
2022-10-20[BongaCams] Support new .net domaindirkf
Resolves #31262.
2022-10-18Fix ADN extractor (#31275)ache
* Rename Anime Digital Network to Animation Digital Network, animationdigitalnetwork.fr * Update the test to an available video * Update the decoding key of subtitles * Keep the support of old URLs * Add a test to match the old URL * Reduce redundancy of the URL name * Fix md5 ^^" * Fix undefined _BASE * Process HTTP error text (eg geo-block) correctly and uniformly in Py3, Py2 * Skip test for CI since geo-blocked Signed-off-by: ache <ache@ache.one> Co-authored-by: dirkf <fieldhouse@gmx.net>
2022-10-13[ManyVids] Support new single-page app structuredirkf
2022-10-13[ManyVids] Support new single-page app structuredirkf
See https://github.com/yt-dlp/yt-dlp/issues/5210#issuecomment-1276919962.
2022-10-12[Motherless] Pull from yt-dlp, etcdirkf
* use username field * loosen regexes * warn on page count 0 in group * avoid reloading group page 1 Closes #29626
2022-10-11[netease] Get netease music download url through player api (#31235)Xie Yanbo
* remove unplayable song from test * compatible with python 2 * using standard User_Agent, fix imports * use hash instead of long description * fix lint * fix hash
2022-10-11[Common:JWPlayer] Fix x1000 scaling errordirkf
See https://github.com/yt-dlp/yt-dlp/issues/5106#issuecomment-1264625161
2022-10-11[utils] Sanitize look-alike Unicode glyphs in non-ID filename fields when ↵dirkf
--restrict-filenames Implements https://github.com/ytdl-org/youtube-dl/issues/31216#issuecomment-1236102822, which has a test.
2022-10-11[JSInterp] Improve separation logicdirkf
Based on https://github.com/yt-dlp/yt-dlp/commit/0468a3b3253957bfbeb98b4a7c71542ff80e9e06
2022-10-11[ZDF] Overhaul ZDF extractorsdirkf
* pull some yt-dlp changes into ZDFBaseIE._extract_format() * add test cases from yt-dlp to ZDFIE * fix crash in ZDFIE._extract_mobile() when object had no `formitaeten` * improve title extraction in ZDFChannelIE (remove trailing station ident) * avoid extracting non-video playlist items (fixes #31149)
2022-10-11[test] Implement string "lambda x: condition(x)" as an expected valuedirkf
Semantics equivalent to `assert condition(got)`
2022-10-10[motherless] Fixed the broken uploader_id in the extractor (#31243)Xiyue
* Fixed the broken uploader_id in the extractor. * Make uploader_id RE looser * Fix uploader_id in test Motherless_3 * Fix group pagination * # coding: utf-8 Co-authored-by: Andy Xuming <xuminic@gmail.com> Co-authored-by: dirkf <fieldhouse@gmx.net>
2022-10-10[manyvids] Improve extraction (#31172)dirkf
* extract all formats from page * extract description, uploader, views, likes * downrate previews * fix tests * use txt_or_none()
2022-10-10[NRK] Remove explicit Accept-Encoding header that invites Brotlidirkf
Fixes #31285
2022-10-04[Telegraaf] Use mobile GraphQL API endpointcoletdjnz
Workaround for Cloudflare 403 Fixes https://github.com/yt-dlp/yt-dlp/issues/5000 Authored by: coletdjnz
2022-10-04[test] Use windows-2019 for testsdirkf
(At least for now) resolves #31249
2022-09-03[jsinterp] Workaround operator associativity issuepukkandan
* temporary fix for player 5a3b6271 [1] 1. https://github.com/yt-dlp/yt-dlp/issues/4635#issuecomment-1235384480
2022-09-01[cache] Add cache validation by program version, based on yt-dlpdirkf
2022-09-01[jsinterp] Handle new YT players 113ca41c, c57c113cdirkf
* add NaN * allow any white-space character for `after_op` * align with yt-dlp f26af78a8ac11d9d617ed31ea5282cfaa5bcbcfa (charcodeAt and bitwise overflow) * allow escaping in regex, fixing player c57c113c
2022-08-29[options] Document that postprocessing is not forced by --postprocessor-argsdirkf
Resolves #30307
2022-08-26[compat] Replace deficient ChainMap class in Py3.3 and earlierdirkf
* fix version check
2022-08-26[compat] Replace deficient ChainMap class in Py3.3 and earlierdirkf
2022-08-26[jsinterp] Improve try/catch/finally supportdirkf
2022-08-25[jsinterp] Fix bug in operator precedencedirkf
* from https://github.com/yt-dlp/yt-dlp/commit/164b03c4864b0d44cfee5e7702f7c2317164a6cf * added tests
2022-08-25[YouTube] Improve error check for n-sig processingdirkf
2022-08-21[core] Avoid processing empty format list after removing bad formatsdirkf
* also ensure compat encoding of error strings
2022-08-21[utils] Ensure RFC3986 encoding result is unicodedirkf
2022-08-19[infoq] Avoid crash if the page has no `mp3Form`gudata
* proposed fix for issue #31131, aligns with yt-dlp Co-authored-by: dirkf <fieldhouse@gmx.net>
2022-08-19[uktvplay] Support domain without .uktvdirkf
2022-08-19[jsinterp] Clean up and pull yt-dlp styledirkf
* add compat_re_Pattern * improve compat_collections_chain_map * use class JS_Undefined * remove unused code
2022-08-19[jsinterp] Handle regexp literals and throw/catch execution (#31182)dirkf
* based on https://github.com/yt-dlp/yt-dlp/commit/f6ca640b122239d5ab215f8c2564efb7ac3e8c65, thanks pukkandan * adds parse support for regexp flags
2022-08-17[jsinterp] Improve JS language support (#31175)dirkf
* operator ?? * operator ?. * operator ** * accurate operator functions * `undefined` handling * object literals {a: 1, "b": expr} * more tests for weird JS comparisons: see https://github.com/ytdl-org/youtube-dl/issues/31173#issuecomment-1217854397.
2022-08-15[postprocessor] Don't replace existing value with null metadata parsed from ↵dirkf
title
2022-08-14[jsinterp] Overhaul JSInterp to handle new YT players 4c3f79c5, 324f67b9 ↵dirkf
(#31170) * back-port from yt-dlp 8f53dc44a0cc1c2d98c35740b9293462c080f5d0, thanks pukkandan * also support void, improve <</>> precedence, improve expressions in comma-list * add more tests
2022-08-10[core] Make `--max-downloads ...` stop immediately on reaching the limitdirkf
Based on and closes #26638.