aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-09-23[skip travis] typoTom-Oliver Heidel
2020-09-23[skip travis] version bumpUnknown
2020-09-23[skip travis] publish right after unix buildTom-Oliver Heidel
2020-09-23[skip travis] update workflowTom-Oliver Heidel
2020-09-23Merge remote-tracking branch 'origin/master'Unknown
2020-09-23[skip travis] alternative approach to datetimeUnknown
2020-09-23[skip travis] apply version as tag nameTom-Oliver Heidel
2020-09-23Merge branch 'SeonjaeHyeon-naver'Tom-Oliver Heidel
2020-09-23Merge branch 'naver' of https://github.com/SeonjaeHyeon/youtube-dl into ↵Tom-Oliver Heidel
SeonjaeHyeon-naver
2020-09-23[skip travis] pypi needs makeTom-Oliver Heidel
2020-09-23Merge remote-tracking branch 'origin/master'Unknown
2020-09-23[skip travis] very minor but important workflow related issueUnknown
2020-09-23[skip travis] adjust available python versionTom-Oliver Heidel
2020-09-23add missing future importUnknown
2020-09-23add pyinst to test exceptionsUnknown
2020-09-23Merge remote-tracking branch 'origin/master'Unknown
2020-09-23[skip travis] added two spacesTom-Oliver Heidel
2020-09-23[skip travis] new workflowTom-Oliver Heidel
2020-09-23Merge remote-tracking branch 'origin/master'Unknown
2020-09-23[skip travis] disable old workflowTom-Oliver Heidel
2020-09-23update workflow, semi fix integrated updaterUnknown
2020-09-22Use better regex for all fixed extraction typesxarantolus
2020-09-22[skip travis] updating issue template tmplsUnknown
2020-09-22Merge branch 'ytdl-org-master'Unknown
2020-09-22merge youtube-dl master 22.09.2020Unknown
2020-09-22[downloader/http] Properly handle missing message in SSLError (closes #26646)Sergey M․
2020-09-22[downloader/http] Fix access to not yet opened stream in retrySergey M․
2020-09-21[youtube] Added 'subscriber_count' to extractionJoel Potts
2020-09-20Merge pull request #129 from jbruchon/masterTom-Oliver Heidel
Switch from binary search tree to Python sets
2020-09-20release 2020.09.20Sergey M․
2020-09-20[ChangeLog] ActualizeSergey M․
[ci skip]
2020-09-20[redtube] Extend _VALID_URL (#26506)nixxo
2020-09-20[twitch] Switch streams to GraphQL and refactor (closes #26535)Sergey M․
2020-09-18Switch from binary search tree to Python setsJody Bruchon
Signed-off-by: Jody Bruchon <jody@jodybruchon.com>
2020-09-19[telequebec] Fix issues (closes #26368)Sergey M․
2020-09-19[telequebec] Add support for brightcove videos (closes #25833)Patrick Dessalle
2020-09-19[pornhub] Extract metadata from JSON-LD (closes #26614)Sergey M․
2020-09-19[extractor/common] Relax interaction count extraction in _json_ldSergey M․
2020-09-19[extractor/common] Extract author as uploader for VideoObject in _json_ldSergey M․
2020-09-19[pornhub] Fix view count extraction (#26621) (refs #26614)JChris246
2020-09-18Randomize the ArchiveTree the proper Python wayJody Bruchon
Signed-off-by: Jody Bruchon <jody@jodybruchon.com>
2020-09-18[skip travis] Update issue templatesTom-Oliver Heidel
2020-09-18Merge pull request #125 from jbruchon/masterTom-Oliver Heidel
Keep download archive in memory for better performance
2020-09-18Style revisionsJody Bruchon
2020-09-18Merge remote-tracking branch 'upstream/master'Jody Bruchon
2020-09-18[hotstar] regex the second.Unknown
2020-09-18Fix wrong variable in position swap corrupting archive listJody Bruchon
It's always a simple error in the end, you know? Signed-off-by: Jody Bruchon <jody@jodybruchon.com>
2020-09-17Randomize archive order before populating search treeJody 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-17Try to mitigate the problem of loading a fully sorted archiveJody Bruchon
Sorted archives turn the binary tree into a linked list and make things horribly slow. This is an incomplete mitigation for this issue.