aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
4 days[JSInterp] Temporary fix for #33102HEADmasterdirkf
9 days[Misc] Correct [_]IE_DESC/NAME in a few IEsdirkf
* thx seproDev, yt-dlp/yt-dlp/pull/12694/commits/ae69e3c * also add documenting comment in `InfoExtractor`
9 days[ITV] Mark ITVX not workingdirkf
* update old shim * correct [_]IE_DESC
9 days[YouTube] Support player `4fcd6e4a`dirkf
thx seproDev, bashonly: yt-dlp/yt-dlp#12748
9 days[JSInterp] Use `,` for join() with null/undefined argumentdirkf
Eg: [1,2,3].join(null) -> '1,2,3'
9 days[YouTube] Align signature tests with yt-dlpdirkf
thx bashonly, yt-dlp/yt-dlp#12725
9 days[YouTube] Update signature extraction for players `643afba4`, `363db69b`dirkf
9 days[YouTube] Support new player URL patternsdirkf
9 days[JSInterp] Improve indexingdirkf
* catch invalid list index with `ValueError` (eg [1, 2]['ab'] -> undefined) * allow assignment outside existing list (eg var l = [1,2]; l[9] = 0;)
9 days[YouTube] Make `_extract_player_info()` use `_search_regex()`dirkf
9 days[YouTube] Also get original of translated automatic captionsdirkf
9 days[YouTube] Get subtitles/automatic captions from both web and API responsesdirkf
14 days[YouTube] Improve support for tce-style player JSdirkf
* improve extraction of global "useful data" Array from player JS * also handle tv-player and add tests: thx seproDev (yt-dlp/yt-dlp#12684) Co-Authored-By: sepro <sepro@sepr0.com>
14 days[YouTube] Update player client datadirkf
thx seproDev (yt-dlp/yt-dlp#12603) Co-authored-by: sepro <sepro@sepr0.com>
2025-03-11[JSInterp] Improve testsdirkf
* from yt-dlp/yt-dlp#12313 * also fix d7c2708
2025-03-11[YouTube] Update TVHTML5 client parametersdirkf
* resolves #33078
2025-03-11[YouTube] Initially support tce-style player JSdirkf
* resolves #33079
2025-03-11[YouTube] Temporarily redirect from tce-style player JSdirkf
2025-03-11[JSInterp] Make indexing error handling more conformantdirkf
* by default TypeError -> undefined, else raise * set allow_undefined=True/False to override
2025-03-11[JSInterp] Handle undefined, etc, passed to JS_RegExp and Exceptiondirkf
2025-03-11[JSInterp] Improve Date processingdirkf
* add JS_Date class implementing JS Date * support constructor args other than date string * support static methods of Date * Date objects are still automatically coerced to timestamp before using in JS.
2025-03-11[compat] Fix inheriting from compat_collections_chain_mapdirkf
* see ytdl-org/youtube-dl#33079#issuecomment-2704038049
2025-03-11[compat] Support zstd Content-Encodingdirkf
* see RFC 8878 7.2
2025-03-11[compat] Clean-updirkf
* make workaround_optparse_bug9161 private * add comments * avoid leaving test objects behind
2025-02-28[YouTube] Fix 91b1569dirkf
2025-02-28[YouTube] Fix channel playlist extraction (#33074)dirkf
* [YouTube] Extract playlist items from LOCKUP_VIEW_MODEL_... * resolves #33073 * thx seproDev (yt-dlp/yt-dlp#11615) Co-authored-by: sepro <sepro@sepr0.com>
2025-02-07[JSInterp] Fix bit-shift coercion for player 9c6dfc4adirkf
2025-02-07[compat] Make casefold privatedirkf
* if required, not supported: `from youtube_dl.casefold import _casefold as casefold`
2025-01-22[YouTube] Use X-Goog-Visitor-Iddirkf
* required with tv player client * resolves #33030
2025-01-20[YouTube] Retain .videoDetails members from all player responsesdirkf
2025-01-19[YouTube] Also use ios client when is_livedirkf
2025-01-15[YouTube] Support `... /feeds/videos.xml?playlist_id={pl_id}`dirkf
2025-01-15[YouTube] Switch to TV API clientdirkf
* thx yt-dlp/yt-dlp#12059
2025-01-06[YouTube] Endure subtitle URLs are completedirkf
* WEB URLs are, MWEB not * resolves #33017
2025-01-06[YouTube] Refactor subtitle processingdirkf
* move to internal function * use `traverse-obj()`
2025-01-06[YouTube] Apply code style changes, trailing commas, etcdirkf
2024-12-31[YouTube] Avoid early crash if webpage can't be readdirkf
* see issue #33013
2024-12-16[YouTube] Always extract using MWEB API clientdirkf
* temporary fix-up for 403 on download * MWEB parameters from yt-dlp 2024-12-06
2024-12-16[YouTube] Fix signature function extraction for `2f1832d2`dirkf
* `_` was omitted from patterns * thx yt-dlp/yt-dlp#11801 Co-authored-by: bashonly
2024-12-16[YouTube] Simplify pattern for nsig function name extractiondirkf
2024-12-16[YouTube] Pass nsig value as return hook, fixes player `3bb1f723`dirkf
2024-12-16[YouTube] Handle player `3bb1f723`dirkf
* fix signature code extraction * raise if n function returns input value * add new tests from yt-dlp Co-authored-by: bashonly
2024-12-16[jsinterp] Add return hook for player `3bb1f723`dirkf
* set var `_ytdl_do_not_return` to a specific value in the scope of a function * if an expression to be returned has that value, `return` becomes `void`
2024-12-16[jsinterp] Strip /* comments */ when parsingdirkf
* NB: _separate() is looking creaky
2024-12-16[jsinterp] Fix and improve "methods"dirkf
* push, unshift return new length * impove edge cases for push/pop, shift/unshift, forEach, indexOf, charCodeAt * increase test coverage
2024-12-16[jsinterp] Fix and improve split/joindirkf
* improve split/join edge cases * correctly implement regex split (not like re.split)
2024-12-16[jsinterp] Fix and improve arithmetic operationsdirkf
* addition becomes concat with a string operand * improve handling of edgier cases * arithmetic in float like JS (more places need cast to int?) * increase test coverage
2024-12-16[jsinterp] Support multiple indexing (eg a[1][2])dirkf
* extend single indexing with improved RE (should probably use/have used _separate_at_paren()) * fix some cases that should have given undefined, not throwing * standardise RE group names * support length of objects, like {1: 2, 3: 4, length: 42}
2024-12-16[jsinterp] Fix and improve loose and strict equality operationsdirkf
* reimplement loose equality according to MDN (eg, 1 == "1") * improve strict equality (eg, "abc" === "abc" but 'abc' is not 'abc') * add tests for above
2024-12-16[jsinterp] Implement `typeof` operatordirkf