Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-18 | Merge remote-tracking branch 'upstream/master' | Jody Bruchon | |
2020-09-18 | [hotstar] regex the second. | Unknown | |
2020-09-18 | Fix wrong variable in position swap corrupting archive list | Jody Bruchon | |
It's always a simple error in the end, you know? Signed-off-by: Jody Bruchon <jody@jodybruchon.com> | |||
2020-09-17 | Randomize archive order before populating search tree | Jody Bruchon | |
This doesn't result in an elegant, perfectly balanced search tree, but it's absolutely good enough. This commit completely mitigates the worst-case scenario where the archive file is sorted. Signed-off-by: Jody Bruchon <jody@jodybruchon.com> | |||
2020-09-18 | [downloader/hls] Fix incorrect end byte in Range HTTP header for media ↵ | Stefan Pöschel | |
segments with EXT-X-BYTERANGE (#24512) (closes #14748) The end of the byte range is the first byte that is NOT part of the to be downloaded range. So don't include it into the requested HTTP download range, as this additional byte leads to a broken TS packet and subsequently to e.g. visible video corruption. Fixes #14748. | |||
2020-09-17 | Try to mitigate the problem of loading a fully sorted archive | Jody Bruchon | |
Sorted archives turn the binary tree into a linked list and make things horribly slow. This is an incomplete mitigation for this issue. | |||
2020-09-18 | [extractor/common] Handle ssl.CertificateError in _request_webpage (closes ↵ | Sergey M․ | |
#26601) ssl.CertificateError is raised on some python versions <= 3.7.x | |||
2020-09-18 | [downloader/http] Improve timeout detection when reading block of data (refs ↵ | Sergey M․ | |
#10935) | |||
2020-09-18 | [downloader/http] Retry download when urlopen times out (#26603) (refs #10935) | Ori Avtalion | |
2020-09-17 | Remove recursion in at_insert() | Jody Bruchon | |
2020-09-17 | Remove debugging print statements | Jody Bruchon | |
2020-09-17 | Keep download archive in memory for better performance | Jody Bruchon | |
The old behavior was to open and scan the entire archive file for every single video download. This resulted in horrible performance for archives of any remotely large size, especially since all new video IDs are appended to the end of the archive. For anyone who uses the archive feature to maintain archives of entire video playlists or channels, this meant that all such lists with newer downloads would have to scan close to the end of the archive file before the potential download was rejected. For archives with tens of thousands of lines, this easily resulted in millions of line reads and checks over the course of scanning a single channel or playlist that had been seen previously. The new behavior in this commit is to preload the archive file into a binary search tree and scan the tree instead of constantly scanning the file on disk for every file. When a new download is appended to the archive file, it is also added to this tree. The performance is massively better using this strategy over the more "naive" line-by-line archive file parsing strategy. The only negative consequence of this change is that the archive in memory will not be synchronized with the archive file on disk. Running multiple instances of the program at the same time that all use the same archive file may result in duplicate archive entries or duplicated downloads. This is unlikely to be a serious issue for the vast majority of users. If the instances are not likely to try to download identical video IDs then this should not be a problem anyway; for example, having two instances pull two completely different YouTube channels at once should be fine. Signed-off-by: Jody Bruchon <jody@jodybruchon.com> | |||
2020-09-17 | [naver] Add support for live videos | SeonjaeHyeon | |
2020-09-17 | [hotstar] regex fix | Unknown | |
2020-09-16 | [skip travis] winver | Unknown | |
2020-09-16 | bump version 2020.09.16 | Unknown | |
2020-09-16 | [Core] hls manifests, dynamic mpd | Unknown | |
2020-09-16 | Merge branch 'Zocker1999NET-ext/remuxe-video' | Tom-Oliver Heidel | |
2020-09-16 | Merge branch 'ext/remuxe-video' of ↵ | Tom-Oliver Heidel | |
https://github.com/Zocker1999NET/youtube-dl into Zocker1999NET-ext/remuxe-video | |||
2020-09-14 | Merge pull request #110 from JensTimmerman/patch-5 | Tom-Oliver Heidel | |
Update README.md | |||
2020-09-14 | Update README.md | Jens Timmerman | |
cleanup + typo fix | |||
2020-09-14 | Merge branch 'tpikonen-elonet' | Tom-Oliver Heidel | |
2020-09-14 | Merge branch 'elonet' of https://github.com/tpikonen/youtube-dl into ↵ | Tom-Oliver Heidel | |
tpikonen-elonet | |||
2020-09-14 | Merge branch 'fix-mitele' of https://github.com/DjMoren/youtube-dl | Tom-Oliver Heidel | |
2020-09-14 | Merge branch 'DjMoren-fix-mitele' | Tom-Oliver Heidel | |
2020-09-14 | Merge branch 'arbitrary-merges' of https://github.com/fstirlitz/youtube-dlc | Tom-Oliver Heidel | |
2020-09-14 | Merge branch 'ytdl-org-master' | Unknown | |
2020-09-14 | Support arbitrary stream merges | felix | |
With this change, the merge operator may join any number of media streams, video or audio. The streams are downloaded in the order specified. Also, fix the metadata post-processor so that it doesn't leave out any streams. | |||
2020-09-14 | merge ytdl-master | Unknown | |
2020-09-14 | Merge pull request #105 from JensTimmerman/patch-3 | Tom-Oliver Heidel | |
Update README.md | |||
2020-09-14 | release 2020.09.14 | Sergey M․ | |
2020-09-14 | [ChangeLog] Actualize | Sergey M․ | |
[ci skip] | |||
2020-09-14 | [postprocessor/embedthumbnail] Fix issues (closes #25717) | Sergey M․ | |
* Fix WebP with wrong extension processing * Fix embedding of thumbnails with % character in path | |||
2020-09-14 | [postprocessor/embedthumbnail] Add support for non jpeg/png thumbnails ↵ | Alex Merkel | |
(closes #25687) | |||
2020-09-13 | Update README.md | Jens Timmerman | |
2020-09-13 | [rtlnl] Extend _VALID_URL for new embed URL schema | Sergey M․ | |
2020-09-13 | [rtlnl] Extend _VALID_URL (#26549) (closes #25821) | Derek Land | |
2020-09-13 | [youtube] Fix empty description extraction (#26575) (closes #26006) | Daniel Peukert | |
2020-09-13 | [srgssr] Extend _VALID_URL (closes #26555, closes #26556, closes #26578) | Sergey M․ | |
2020-09-13 | [googledrive] Use redirect URLs for source format (closes #18877, closes ↵ | Sergey M․ | |
#23919, closes #24689, closes #26565) | |||
2020-09-13 | Merge pull request #102 from blackjack4494/gdcvault-fix | Tom-Oliver Heidel | |
[gdcvault] fix extractor | |||
2020-09-13 | flake8 | Unknown | |
2020-09-13 | [skip travis] bump version | Unknown | |
2020-09-13 | [svtplay] Fix id extraction (closes #26576) | Sergey M․ | |
2020-09-13 | Merge pull request #96 from blackjack4494/kakao-new-apis | Tom-Oliver Heidel | |
[kakao] new apis | |||
2020-09-13 | Merge pull request #95 from blackjack4494/daserste-ndr | Tom-Oliver Heidel | |
[ndr] support Daserste ndr | |||
2020-09-13 | [kakao] new apis | Unknown | |
there are also ageLimit and GeoBlock attributes provided by api_json if needed | |||
2020-09-13 | [redbulltv] improve support for rebull.com TV localized URLS(#22063) | Remita Amine | |
2020-09-13 | Merge pull request #94 from blackjack4494/conv_subs_when_skipped | Tom-Oliver Heidel | |
[youtube] Convert subs when download is skipped | |||
2020-09-13 | flake8 | Unknown | |