Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | [reddit] Fix for quarantined subreddits (#848) | ouwou | 2021-09-02 | 1 | -0/+2 | |
| | | | Authored by: ouwou | |||||
* | [mediaset] Fix extraction for more videos (#852) | nyuszika7h | 2021-09-02 | 1 | -2/+18 | |
| | | | | Closes #851 Authored by: nyuszika7h | |||||
* | [mediaset] Fix extraction for some videos (#850) | nyuszika7h | 2021-09-01 | 1 | -1/+17 | |
| | | | | | This was broken by #564 Closes #849 Authored by: nyuszika7h | |||||
* | [XHamster] Extract `uploader_id` (#844) | octotherp | 2021-09-01 | 1 | -0/+5 | |
| | | | Authored by: octotherp | |||||
* | [Tokentube] Add extractor (#842) | u-spec-png | 2021-09-01 | 2 | -0/+156 | |
| | | | | Closes #800 Authored by: u-spec-png | |||||
* | [facebook] Fix format sorting | pukkandan | 2021-09-01 | 1 | -2/+3 | |
| | | | | Closes #795 | |||||
* | [EmbedSubtitle] Continue even if some files are missing | pukkandan | 2021-09-01 | 1 | -0/+3 | |
| | ||||||
* | [Viafree] Fix extractor and extract subtitles (#828) | coletdjnz | 2021-08-31 | 1 | -12/+24 | |
| | | | | Authored by: coletdjnz Fixes #820 | |||||
* | [iwara.tv] Extract more metadata (#829) | BunnyHelp | 2021-09-01 | 1 | -2/+21 | |
| | | | Authored-by: BunnyHelp | |||||
* | [afreecatv] Tolerate failure to parse date string (#832) | Luc Ritchie | 2021-08-30 | 1 | -2/+11 | |
| | | | Authored by: wlritchi | |||||
* | [afreecatv] Fix adult VODs (#831) | Luc Ritchie | 2021-08-30 | 1 | -0/+6 | |
| | | | | | | Original PR: https://github.com/ytdl-org/youtube-dl/pull/28405 Fixes https://github.com/ytdl-org/youtube-dl/issues/26622, https://github.com/ytdl-org/youtube-dl/issues/26926 Authored by: wlritchi | |||||
* | [build] Add homebrew taps (#827) | The Hatsune Daishi | 2021-08-30 | 3 | -0/+58 | |
| | | | | | https://github.com/yt-dlp/homebrew-taps Closes: #754, #770 Authored by: nao20010128nao | |||||
* | [CDA] Add more formats (#805) | u-spec-png | 2021-08-30 | 1 | -12/+32 | |
| | | | | Fixes: #791, https://github.com/ytdl-org/youtube-dl/issues/29844 Authored by: u-spec-png | |||||
* | [build] Fix bug in making `yt-dlp.tar.gz` | pukkandan | 2021-08-30 | 1 | -2/+2 | |
| | ||||||
* | [StarTV] Add extractor for startv.com.tr (#815) | coletdjnz | 2021-08-29 | 2 | -0/+104 | |
| | | | | Authored-by: mrfade, coletdjnz Related: https://github.com/ytdl-org/youtube-dl/issues/22715 | |||||
* | [Motherless] Fix extractor (#809) | coletdjnz | 2021-08-29 | 1 | -6/+24 | |
| | | | | Authored-by: coletdjnz Fixes #806, https://github.com/ytdl-org/youtube-dl/issues/29626 | |||||
* | [VH1,TVLand] Fix extractors (#784) | Sipherdrakon | 2021-08-30 | 4 | -22/+17 | |
| | | | | Fixes #745 but not #713 Authored by: Sipherdrakon | |||||
* | [Patreon] Add PatreonUserIE (#573) | zenerdi0de | 2021-08-30 | 2 | -2/+60 | |
| | | | Authored by: zenerdi0de | |||||
* | [peloton] Add extractor (#192) | IONECarter | 2021-08-30 | 2 | -0/+226 | |
| | | | Authored by: IONECarter, capntrips, pukkandan | |||||
* | [ATV.at] Fix extractor for ATV.at (#816) | coletdjnz | 2021-08-29 | 1 | -42/+41 | |
| | | | | Authored-by: NeroBurner, coletdjnz Fixes https://github.com/ytdl-org/youtube-dl/issues/29079 | |||||
* | [camtube] remove extractor (#810) | coletdjnz | 2021-08-29 | 2 | -72/+0 | |
| | | | Co-authored-by: alerikaisattera | |||||
* | [Nova] fix extractor (#807) | std-move | 2021-08-29 | 1 | -1/+1 | |
| | | | | Fixes: https://github.com/ytdl-org/youtube-dl/issues/27840 Authored by: std-move | |||||
* | [TV2Hu] Fix `TV2HuIE` and add `TV2HuSeriesIE` (#804) | Ashish | 2021-08-29 | 2 | -43/+94 | |
| | | | | Closes #799 Authored by: Ashish0804 | |||||
* | [Niconico] Add Search extractors (#672) | animelover1984 | 2021-08-28 | 3 | -5/+114 | |
| | | | Authored by: animelover1984, pukkandan | |||||
* | [docs] Fix some typos | pukkandan | 2021-08-28 | 4 | -6/+8 | |
| | | | | Closes #677, #774 | |||||
* | [ShemarooMe] Fix extractor (#798) | Ashish | 2021-08-27 | 1 | -13/+41 | |
| | | | | Closes #797 Authored by: Ashish0804 | |||||
* | Use `os.replace` where applicable (#793) | Paul Wrubel | 2021-08-27 | 5 | -18/+10 | |
| | | | | | | | | | | When using ```py os.remove(encodeFilename(filename)) os.rename(encodeFilename(temp_filename), encodeFilename(filename)) ``` the `os.remove` need not be atomic and so can be executed arbitrarily compared to the immediately following rename call. It is better to use `os.replace` instead Authored by: paulwrubel | |||||
* | [aria2c] Obey `--rate-limit` | pukkandan | 2021-08-27 | 1 | -0/+1 | |
| | ||||||
* | [youtube] Improve 26e8e04454d28b623c16f34496e31752086ff457 | pukkandan | 2021-08-26 | 1 | -1/+1 | |
| | | | | The streams of the same itag may have slightly different size/bitrate | |||||
* | [youtube] Prefer audio stream that YouTube considers default | pukkandan | 2021-08-26 | 1 | -2/+4 | |
| | | | | | Fixes: https://github.com/ytdl-org/youtube-dl/issues/29864 Related: https://github.com/clsid2/mpc-hc/issues/1268 | |||||
* | [FormatSort] Remove priority of `lang` | pukkandan | 2021-08-26 | 2 | -3/+3 | |
| | ||||||
* | [facebook] Update onion URL (#788) | Robin | 2021-08-25 | 1 | -2/+2 | |
| | | | Authored by: Derkades | |||||
* | [ProjectVeritas] Add extractor (#790) | Ashish | 2021-08-25 | 2 | -0/+56 | |
| | | | | https://github.com/ytdl-org/youtube-dl/issues/26749 Authored by: Ashish0804 | |||||
* | [Epicon] Add extractors (#789) | Ashish | 2021-08-25 | 2 | -0/+123 | |
| | | | Authored by: Ashish0804 | |||||
* | Fix `--no-prefer-free-formats` (#787) | CeruleanSky | 2021-08-25 | 1 | -1/+1 | |
| | | | Authored by: CeruleanSky | |||||
* | fix bug in 88acdbc2698169e22cdbf358e44765150434c69e | pukkandan | 2021-08-25 | 1 | -1/+1 | |
| | ||||||
* | [radiko] Add extractors (#731) | The Hatsune Daishi | 2021-08-25 | 3 | -0/+237 | |
| | | | | https://github.com/ytdl-org/youtube-dl/issues/29840 Authored by: nao20010128nao | |||||
* | [iwara] Add thumbnail (#781) | i6t | 2021-08-25 | 1 | -0/+5 | |
| | | | Authored by: i6t | |||||
* | [youtube] Remove annotations and deprecate `--write-annotations` (#765) | coletdjnz | 2021-08-24 | 4 | -37/+5 | |
| | | | | Closes #692 Authored by: coletdjnz | |||||
* | fix bug in 6251555f1c670c66aa781bf9f29e9b5b33d90be1 | pukkandan | 2021-08-24 | 1 | -1/+1 | |
| | | | | :ci skip | |||||
* | [downloader/ffmpeg] Support for DASH manifests (experimental) | pukkandan | 2021-08-24 | 4 | -10/+16 | |
| | | | | Closes #159 | |||||
* | [downloader/ffmpeg] Allow passing custom arguments before -i | pukkandan | 2021-08-24 | 5 | -27/+34 | |
| | | | | Closes #686 | |||||
* | [ManotoTV] Add new extractors (#767) | tandy1000 | 2021-08-24 | 2 | -0/+143 | |
| | | | Authored by: tandy1000 | |||||
* | [facebook] Fix metadata extraction | pukkandan | 2021-08-23 | 1 | -38/+84 | |
| | | | | | | | Original PR: https://github.com/ytdl-org/youtube-dl/pull/29796 Closes #453, https://github.com/ytdl-org/youtube-dl/issues/29421, https://github.com/ytdl-org/youtube-dl/issues/23627, https://github.com/ytdl-org/youtube-dl/issues/23180, https://github.com/ytdl-org/youtube-dl/issues/14156 Authored by: kikuyan | |||||
* | [TV2] Fix extractor (#766) | Ashish | 2021-08-23 | 1 | -29/+105 | |
| | | | | Closes #764 Authored by: Ashish0804 | |||||
* | [GabTV] Add extractor (#768) | Ashish | 2021-08-23 | 2 | -0/+65 | |
| | | | | Closes #499 Authored by: Ashish0804 | |||||
* | [tiktok] Add TikTokUserIE (#756) | Ashish | 2021-08-23 | 2 | -3/+82 | |
| | | | Authored-by: Ashish0804, pukkandan | |||||
* | [TikTok] Fix metadata extraction | pukkandan | 2021-08-23 | 1 | -96/+73 | |
| | ||||||
* | [aljazeera] Fix extractor (#763) | MinePlayersPE | 2021-08-23 | 1 | -1/+1 | |
| | | | | Closes #762, https://github.com/ytdl-org/youtube-dl/issues/29517 Authored by: MinePlayersPE | |||||
* | [peertube] handle new video URL format | pukkandan | 2021-08-23 | 1 | -4/+38 | |
| | | | | | | Closes #722, https://github.com/ytdl-org/youtube-dl/issues/29782 Original PR: https://github.com/ytdl-org/youtube-dl/pull/29475 Authored by: Chocobozzz |