aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dlc
Commit message (Collapse)AuthorAgeFilesLines
* Remove recursion in at_insert()Jody Bruchon2020-09-171-12/+27
|
* Remove debugging print statementsJody Bruchon2020-09-171-2/+0
|
* Keep download archive in memory for better performanceJody Bruchon2020-09-171-10/+57
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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>
* [hotstar] regex fixUnknown2020-09-171-1/+1
|
* bump version 2020.09.16Unknown2020-09-161-1/+1
|
* [Core] hls manifests, dynamic mpdUnknown2020-09-164-3/+26
|
* Merge branch 'ext/remuxe-video' of ↵Tom-Oliver Heidel2020-09-164-0/+35
| | | | https://github.com/Zocker1999NET/youtube-dl into Zocker1999NET-ext/remuxe-video
* Merge branch 'elonet' of https://github.com/tpikonen/youtube-dl into ↵Tom-Oliver Heidel2020-09-142-0/+138
| | | | tpikonen-elonet
* Merge branch 'fix-mitele' of https://github.com/DjMoren/youtube-dlTom-Oliver Heidel2020-09-141-7/+34
|
* Merge branch 'arbitrary-merges' of https://github.com/fstirlitz/youtube-dlcTom-Oliver Heidel2020-09-143-53/+77
|\
| * Support arbitrary stream mergesfelix2020-09-142-53/+76
| | | | | | | | | | | | | | | | 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.
| * [dispeak] mark the "slides" stream as video-onlyfelix2020-09-121-0/+1
| |
* | merge ytdl-masterUnknown2020-09-1410-50/+209
| |
* | Merge pull request #102 from blackjack4494/gdcvault-fixTom-Oliver Heidel2020-09-131-52/+21
|\ \ | | | | | | [gdcvault] fix extractor
| * | flake8Unknown2020-09-131-4/+2
| | |
| * | [gdcvault] fix extractorUnknown2020-09-131-51/+22
| |/ | | | | at least when not logged in?
* | [skip travis] bump versionUnknown2020-09-131-1/+1
| |
* | Merge pull request #96 from blackjack4494/kakao-new-apisTom-Oliver Heidel2020-09-131-23/+12
|\ \ | | | | | | [kakao] new apis
| * | [kakao] new apisUnknown2020-09-131-23/+12
| | | | | | | | | there are also ageLimit and GeoBlock attributes provided by api_json if needed
* | | Merge pull request #95 from blackjack4494/daserste-ndrTom-Oliver Heidel2020-09-131-6/+9
|\ \ \ | |/ / |/| | [ndr] support Daserste ndr
| * | [ndr-daserste] flake8Unknown2020-09-121-1/+1
| | |
| * | [daserste-ndr] dirty workaroundUnknown2020-09-111-6/+9
| | | | | | | | | what a mess..
* | | flake8Unknown2020-09-131-3/+3
| | |
* | | [youtube] convert subtitles with --skip-downloadUnknown2020-09-132-0/+25
| | |
* | | add json3 back but don't use it as default.Unknown2020-09-131-1/+1
| | |
* | | exclude json3 for nowUnknown2020-09-131-1/+1
| |/ |/|
* | [skip travis] bump versionUnknown2020-09-121-1/+1
| |
* | Merge branch 'tiktok' of https://github.com/skyme5/youtube-dl into skyme5-tiktokTom-Oliver Heidel2020-09-122-107/+102
| |
* | Merge branch 'pr/duboku' of https://github.com/lkho/youtube-dl into ↵Tom-Oliver Heidel2020-09-122-0/+246
| | | | | | | | lkho-pr/duboku
* | Merge branch 'alura' of https://github.com/hugohaa/youtube-dl into hugohaa-aluraTom-Oliver Heidel2020-09-122-0/+184
| |
* | Merge branch '26564' of https://github.com/adrianheine/youtube-dl into ↵Tom-Oliver Heidel2020-09-121-2/+10
| | | | | | | | adrianheine-26564
* | Merge branch 'master' of https://github.com/ddland/youtube-dl into ddland-masterTom-Oliver Heidel2020-09-121-0/+14
| |
* | Merge branch 'patch-2' of https://github.com/nixxo/youtube-dl into nixxo-patch-2Tom-Oliver Heidel2020-09-121-4/+10
| |
* | Merge remote-tracking branch 'origin/master'Unknown2020-09-121-47/+71
|\ \
| * \ Merge pull request #69 from blackjack4494/viki-subtitles_and_moreTom-Oliver Heidel2020-09-121-47/+71
| |\ \ | | | | | | | | [Viki] subtitles, formats
| | * | [soundcloud] flake8Unknown2020-09-121-3/+3
| | | |
| | * | [viki] subtitles, formatsUnknown2020-09-091-47/+71
| | |/
* | / Merge branch 'myvideo_ge' of https://github.com/fonkap/youtube-dl into ↵Tom-Oliver Heidel2020-09-122-0/+57
|/ / | | | | | | fonkap-myvideo_ge
* | Merge branch 'rai-update' of https://github.com/iamleot/youtube-dl into ↵Tom-Oliver Heidel2020-09-121-78/+49
| | | | | | | | iamleot-rai-update
* | Merge branch 'JensTimmerman-patch-1' of ↵Tom-Oliver Heidel2020-09-121-4/+4
| | | | | | | | https://github.com/JensTimmerman/youtube-dl into JensTimmerman-JensTimmerman-patch-1
* | Merge branch 'ytdl-org-master'Unknown2020-09-127-271/+456
| |
* | Merge branch 'fix/google-drive-cookie-issue' of ↵Tom-Oliver Heidel2020-09-121-0/+2
|/ | | | https://github.com/legraphista/youtube-dl into legraphista-fix/google-drive-cookie-issue
* [soundcloud] playlist limit per page according to official docsUnknown2020-09-091-1/+1
| | | https://github.com/ytdl-org/youtube-dl/pull/26557
* Merge branch 'rutv' of https://github.com/adrianheine/youtube-dl into ↵Tom-Oliver Heidel2020-09-081-1/+1
| | | | adrianheine-rutv
* Merge branch 'magenta' of https://github.com/adrianheine/youtube-dl into ↵Tom-Oliver Heidel2020-09-082-0/+62
| | | | adrianheine-magenta
* Merge branch 'ard.py_add_playlist_support' of ↵Tom-Oliver Heidel2020-09-081-1/+153
| | | | https://github.com/martin54/youtube-dl into martin54-ard.py_add_playlist_support
* [skip travis] bump versionUnknown2020-09-061-1/+1
|
* Merge branch 'ondemandkorea' of ↵Tom-Oliver Heidel2020-09-061-7/+31
| | | | https://github.com/julien-hadleyjack/youtube-dl into julien-hadleyjack-ondemandkorea
* flake8 fix + soundcloud testsUnknown2020-09-062-2/+7
|
* Merge branch 'mkvthumbnail' of https://github.com/MrDoritos/youtube-dl into ↵Tom-Oliver Heidel2020-09-061-0/+19
| | | | MrDoritos-mkvthumbnail