aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-04-27[Niconico] Support 2FA (#3559)ekangmonyet
Authored by: ekangmonyet
2022-04-27[cleanup,build] Cleanup some build-related codepukkandan
Fixes an issue in 7ab56be2c7309a2d11d4ee28c71f8fb29da21ef7
2022-04-27[cleanup] Delete unused extractorspukkandan
2022-04-27[ffmpeg] Fix features detectionpukkandan
2022-04-27[Metadata] Remove filename from attached info-jsonpukkandan
2022-04-26[downloader/ffmpeg] Specify headers for each URL (#3553)Elyse
Closes #2696 Authored by: elyse0
2022-04-26[build] Ensure `compat._legacy` is packed in executablespukkandan
Fixes https://github.com/yt-dlp/yt-dlp/commit/9196cbfe8bb7a6eb46037735b76f21963dfdc61a#commitcomment-72192406
2022-04-26[compat/asyncio] Use `asyncio.all_tasks`pukkandan
2022-04-26[compat] Ensure submodules are correctly wrappedpukkandan
2022-04-26Revert acbc64225006964cf52d316e007a77a1b5e2975bpukkandan
Reverts "[utils] WebSocketsWrapper: Ignore warnings at websockets instantiation" The warning should not be suppressed. We need to address it
2022-04-25[downloader/fc2] Stop heatbeating once FFmpeg finishesLesmiscore
Authored by: Lesmiscore
2022-04-25[utils] WebSocketsWrapper: Ignore warnings at websockets instantiationLesmiscore
This also fixes crash caused by moving asyncio to .compat. Authored by: Lesmiscore Thanks: J.Chung at Discord (581418557871620106)
2022-04-23[bandcamp] Exclude merch links (#3368)Yipten
Closes #3318 Authored by: Yipten
2022-04-23[icareus] Add extractor (#3320)Teemu Ikonen
Authored by: tpikonen, pukkandan
2022-04-23[hotstar] Refactor extractorspukkandan
Closes #3517
2022-04-23[build] Avoid use of `install -D`pukkandan
Closes #3429
2022-04-23[telegram] Fix metadata extractionpukkandan
Closes #3528
2022-04-23[Sponsorblock] Don't crash when duration is unknownpukkandan
CLoses #3529
2022-04-22[PearVideo] Add fallback for formats (#3438)Ha Tien Loi
Closes #3425 Authored by: hatienl0i261299
2022-04-21[EmbedThumbnail] Disable thumbnail conversion for mkv (#3512)Evan Spensley
Closes #3209 Authored by: evansp
2022-04-21[dependencies] Create module with all dependency importspukkandan
2022-04-20Don't imply `-s` for later stages of `-O`pukkandan
2022-04-20[Gofile] Support password-protected links (#3488)mehq
Closes #3465 Authored by: mehq
2022-04-19[Olympics] Fix format extensionpukkandan
Closes #3481
2022-04-19Fix `Makefile`pukkandan
Closes #3467, #35 Authored by: putnam
2022-04-19[openrec:movie] Enable fallback for /movie/ URLsLesmiscore
Closes #3474
2022-04-19bugfix for a44ca5a470e09b5170fc9c3a46733f050fadbfae, ↵pukkandan
19a0394044bfad36cd665450271b8eb048a41c02, 77f9033095cd8e1092a80db67f2b577cf13f95a8 Closes #3472
2022-04-18bugfix for 19a0394044bfad36cd665450271b8eb048a41c02, ↵pukkandan
3d3bb1688bfc5373105e6bf7c3d4729cf3f78788
2022-04-18[compat] Split into sub-modules (#2173)felix
Authored by: fstirlitz, pukkandan
2022-04-18[cleanup] Misc cleanup and refactor (#2173)pukkandan
2022-04-18[test] Convert warnings into errorspukkandan
* And fix some existing warnings Authored by: fstirlitz
2022-04-18[docs] Improve embedding docs and other minor fixespukkandan
2022-04-17[niconico] Set `expected_protocol` to a public fieldpukkandan
Closes #3440
2022-04-16[downloader/fragment] Make single thread download work for --live-from-start ↵Lesmiscore (Naoya Ozaki)
(#3446) Authored by: Lesmiscore
2022-04-15Fix `--skip-unavailable-fragments`pukkandan
Bug in d71fd412495af9ebccef807379859a0baa97ddee Closes #3437
2022-04-15[utils] Fix WebSocketsWrapperpukkandan
Bug in 3cea3edd1ac1101bd709dfa0305509028118b163 Closes #3422
2022-04-15Do not change fragment chunk-size when `--test`pukkandan
Closes #3434
2022-04-15[youtube] Fix episode metadata extractioncoletdjnz
2022-04-14[chingari] Fix archiving and testspukkandan
2022-04-14[spotify] Detect iframe embeds (#3430)Felix S
Authored by: fstirlitz
2022-04-12[facebook] Improve thumbnail extraction (#3392)Akmal
Authored by: Wikidepia
2022-04-12Fix bug in 66cf3e1001b6d9a2829fe834c3f9103b0890918epukkandan
2022-04-12[EmbedSubtitle] Enable for more video extensionspukkandan
Closes #3382
2022-04-12[utils] certifi: Make sure the pem file existspukkandan
Closes #3353
2022-04-12[cleanup] Misc cleanup (#2173)pukkandan
Authored by: fstirlitz, pukkandan
2022-04-12[cleanup] Sort importspukkandan
Using https://github.com/PyCQA/isort isort -m VERTICAL_HANGING_INDENT --py 36 -l 80 --rr -n --tc .
2022-04-12[cleanup] Upgrade syntaxpukkandan
Using https://github.com/asottile/pyupgrade 1. `__future__` imports and `coding: utf-8` were removed 2. Files were rewritten with `pyupgrade --py36-plus --keep-percent-format` 3. f-strings were cherry-picked from `pyupgrade --py36-plus` Extractors are left untouched (except removing header) to avoid unnecessary merge conflicts
2022-04-12[cleanup] Mark some compat variables for removal (#2173)pukkandan
Authored by fstirlitz, pukkandan
2022-04-12[cleanup] Remove unused code paths (#2173)felix
Notes: * `_windows_write_string`: Fixed in 3.6 * https://bugs.python.org/issue1602 * PEP: https://www.python.org/dev/peps/pep-0528 * Windows UTF-8 fix: Fixed in 3.3 * https://bugs.python.org/issue13216 * `__loader__`: is always present in 3.3+ * https://bugs.python.org/issue14646 * `workaround_optparse_bug9161`: Fixed in 2.7 * https://bugs.python.org/issue9161 Authored by: fstirlitz
2022-04-12[cleanup] Remove unused scripts/tests (#2173)felix
Authored by fstirlitz, pukkandan