aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2024-08-06[Youtube] Rework n function extraction patternHEADmasterdirkf
Now also succeeds with player b12cc44b
2024-08-06[jsinterp] Improve slice implementation for player b12cc44bdirkf
Partly taken from yt-dlp/yt-dlp#10664, thx seproDev Fixes #32896
2024-08-01[Youtube] Fix nsig extraction for player 20dfca59 (#32891)Aiur Adept
* dirkf's patch for nsig extraction * add generic search per yt-dlp/yt-dlp/pull/10611 - thx bashonly --------- Co-authored-by: dirkf <fieldhouse@gmx.net>
2024-07-25[Youtube] Find `n` function name in player `3400486c`dirkf
Fixes #32877
2024-07-24[Youtube] Make n-sig throttling diagnostic up-to-datedirkf
2024-07-11[YouTube] Fix nsig processing for player `b22ef6e7`2024.07.11-nightlydirkf
* improve extraction of function name (like yt-dlp/yt-dlp#10390) * always use JSInterp to extract function code (yt-dlp/yt-dlp#10396, thx seproDev, pukkandan)
2024-07-11[jsinterp] Support functionality for player `b22ef6e7`dirkf
* support `prototype` for call() and apply() (yt-dlp/yt-dlp#10392, thx Grub4k) * map JS `Array` to `list`
2024-07-11[jsinterp] Further improve expression parsing (fix fd8242e)dirkf
Passes tests from yt-dlp
2024-07-11[jsinterp] Re-align JSInterp and tests (esp.) with yt-dlpdirkf
Thx: various yt-dlp authors
2024-07-11[core] Address gaps in allowed extensionsbashonly
Adds some extensions missing in 46521096433aceaa41b4caa845bed22ca6f377ce (from yt-dlp/yt-dlp#10362) Authored by: bashonly Co-authored by: dirkf
2024-07-07[core] Fix PR #32830 for fixed extensionless output templatedirkf
2024-07-07[YandexMusic] Save track version in the title fieldunkernet
PR #32837 * Add track version to track title
2024-07-06[YandexMusic] Download music in High Quality (320 Kbit/s)Sergey Musatov
PR #31159
2024-07-02[core,utils] Support unpublicised `--no-check-extensions`dirkf
2024-07-02[core,utils] Implement unsafe file extension mitigationdirkf
* from https://github.com/yt-dlp/yt-dlp/security/advisories/GHSA-79w7-vh3h-8g4, thx grub4k
2024-07-02[utils] Back-port Namespace and MEDIA_EXTENSIONS from yt-dlpdirkf
Thx pukkandan * Namespace: https://github.com/yt-dlp/yt-dlp/commit/591bb9d355 * MEDIA_EXTENSIONS: https://github.com/yt-dlp/yt-dlp/commit/8dc5930511
2024-06-20[PalcoMP3] Conform to new linter ruledirkf
* no space after @ in decorator
2024-06-20[jsinterp] Various tweaksdirkf
* treat Infinity like NaN * cache operator list
2024-06-20[jsinterp] Fix and improve expression parsingdirkf
* improve BODMAS (fixes https://github.com/ytdl-org/youtube-dl/issues/32815) * support more weird expressions with multiple unary ops
2024-06-20[jsinterp] Add Debugger from yt-dlpdirkf
* https://github.com/yt-dlp/yt-dlp/commit/8f53dc4 * thx pukkandan
2024-06-20[utils] Save `orig_msg` in `ExtractorError`dirkf
2024-06-11[VidLii] Add 720p support (#30924)Paper
* [VidLii] Add HD support (yt-dlp backport-ish) * Also fix a bug with the view count --------- Co-authored-by: dirkf <fieldhouse@gmx.net>
2024-06-11[ORF] Skip tests with limited availabilitydirkf
2024-06-11[ORF] Re-factor and update`ORFFM4StoryIE`dirkf
* fix getting media via DASH instead of inaccessible mp4 * also get in-page YT media
2024-06-11[ORF] Support sound.orf.at, updating `ORFRadioIE`dirkf
* maintain support for xx.orf.at/player/... URLs * add `ORFRadioCollectionIE` to support playlists in ORF Sound * back-port and re-work `ORFPodcastIE` from https://github.com/yt-dlp/yt-dlp/pull/8486, thx Esokrates
2024-06-11[ORF] Support on.orf.at, replacing `ORFTVthekIE`dirkf
* add `ORFONIE`, back-porting yt-dlp PR https://github.com/yt-dlp/yt-dlp/pull/9113 and friends: thx HobbyistDev, TuxCoder, seproDev * re-factor to support livestreams via new `ORFONliveIE`
2024-06-11[test] Improve download testdirkf
* skip reason can't be unicode in Py2 * remove duplicate assert...Equal functions
2024-06-11[core] Re-factor with `_fill_common_fields()` as used in yt-dlpdirkf
2024-06-11[core] Safer handling of nested playlist datadirkf
2024-06-11[mixcloud] updated mixcloud API server address (#32557)kmnx
* updated mixcloud API server address * fix tests * etc --------- Co-authored-by: dirkf <fieldhouse@gmx.net>
2024-05-30[InfoExtractor] Misc yt-dlp back-ports, etcdirkf
* add _yes_playlist() method * avoid crash using _NETRC_MACHINE * use _search_json() in _search_nextjs_data() * _search_nextjs_data() default is JSON, not text * test for above
2024-05-30[compat] Avoid type comparison in `compat_ord`dirkf
NB This isn't actually a compat fn; it should be utils.int_from_int_or_char
2024-05-30[utils] Split out traversal.py dummy and traversal testsdirkf
2024-05-30[compat] Improve compat_etree_iterfind for Py2.6dirkf
Adapted from https://raw.githubusercontent.com/python/cpython/2.7/Lib/xml/etree/ElementPath.py
2024-05-30[utils] Update traverse_obj() from yt-dlpdirkf
* remove `is_user_input` option per https://github.com/yt-dlp/yt-dlp/pull/8673 * support traversal of compat_xml_etree_ElementTree_Element per https://github.com/yt-dlp/yt-dlp/pull/8911 * allow un/branching using all and any per https://github.com/yt-dlp/yt-dlp/pull/9571 * support traversal of compat_cookies.Morsel and multiple types in `set()` keys per https://github.com/yt-dlp/yt-dlp/pull/9577 thx Grub4k for these * also, move traversal tests to a separate class * allow for unordered dicts in tests for Py<3.7
2024-05-15[workflows/ci.yml] Temporary workaround for Python 3.5 _pip_ failuresdirkf
https://github.com/actions/setup-python/issues/866
2024-04-22[YouPorn] Add playlist extractorsdirkf
* YouPornCategoryIE * YouPornChannelIE * YouPornCollectionIE * YouPornStarIE * YouPornTagIE * YouPornVideosIE,
2024-04-22[YouPorn] Improve extractiondirkf
* detect unwatchable videos * improve duration extraction * fix count extraction and support large values * detect and remove SEO spam boilerplate description
2024-04-22[test/test_download] Support 'playlist_maxcount:count' expected valuedirkf
* parallel to `playlist_mincount' * specify both for a range of playlist lengths * if max < min the test will always fail!
2024-04-22[YouPorn] Incorporate yt-dlp PR 8827dirkf
* from https://github.com/yt-dlp/yt-dlp/pull/8827 * extract from webpage instead of broken API URL * thx The-MAGI
2024-04-07[postprocessor/ffmpeg] Fix finding ffprobe (bug in 21792b8)dirkf
Fixes https://github.com/ytdl-org/youtube-dl/commit/21792b88b791b16e3ab0a0fb2e26e5bb8a4e2ff3#commitcomment-140705274, thx: vonProteus
2024-04-05[utils] Fix crash in _report_ignoring_subs from c58b655 (#32762)Ori Avtalion
Align `utils.bug_reports_message()` with yt-dlp https://github.com/yt-dlp/yt-dlp/commit/5873d4ccdd, thanks fstirlitz --------- Co-authored-by: dirkf <fieldhouse@gmx.net>
2024-03-27[external/FFmpeg] Fix and improve --ffmpeg-location handlingdirkf
* pass YoutubeDL (FileDownloader) to FFmpegPostProcessor constructor * consolidate path search in FFmpegPostProcessor * make availability of FFmpegFD depend on existence of FFmpegPostProcessor * detect ffmpeg executable on instantiation of FFmpegFD * resolves #32735
2024-03-27[downloader/external] Fix "Resource Warning" in downloader testdirkf
* add compat_subprocess_Popen context manager * apply context manager in FFmpegFD._call_downloader()
2024-03-27[compat] Simplify/fix compat_html_parser_HTMLParseErrordirkf
2024-03-27[utils] Apply compat_contextlib_suppressdirkf
2024-03-27[compat] Add compat_contextlib_suppressdirkf
with compat_contextlib_suppress(*Exceptions): # code that fails silently for any of Exceptions
2024-03-23[Youtube] Fix unwanted private method __ie_msg in f8b0135850gy-chen
Fixes `AttributeError no attribute '_YoutubeIE__ie_msg'` if unable to decode n-parameter
2024-03-12[Vimeo] Improve `config` extraction (#32742)Zizheng Guo
* update for more robust json parsing
2024-03-08[Videa] Fix extractionhatsomatt
* update API URL * from https://github.com/yt-dlp/yt-dlp/pull/8003 * thanks to the authors! Closes yt-dlp/7427 Authored by: hatsomatt, aky-01