]> jfr.im git - yt-dlp.git/log
yt-dlp.git
3 years agomerge youtube-dl master 22.09.2020
Unknown [Tue, 22 Sep 2020 14:09:54 +0000 (16:09 +0200)] 
merge youtube-dl master 22.09.2020

3 years ago[downloader/http] Properly handle missing message in SSLError (closes #26646)
Sergey M․ [Tue, 22 Sep 2020 00:01:59 +0000 (07:01 +0700)] 
[downloader/http] Properly handle missing message in SSLError (closes #26646)

3 years ago[downloader/http] Fix access to not yet opened stream in retry
Sergey M․ [Mon, 21 Sep 2020 23:44:14 +0000 (06:44 +0700)] 
[downloader/http] Fix access to not yet opened stream in retry

3 years agoMerge pull request #129 from jbruchon/master
Tom-Oliver Heidel [Sun, 20 Sep 2020 10:14:03 +0000 (12:14 +0200)] 
Merge pull request #129 from jbruchon/master

Switch from binary search tree to Python sets

3 years agorelease 2020.09.20
Sergey M․ [Sun, 20 Sep 2020 05:30:45 +0000 (12:30 +0700)] 
release 2020.09.20

3 years ago[ChangeLog] Actualize
Sergey M․ [Sun, 20 Sep 2020 05:23:38 +0000 (12:23 +0700)] 
[ChangeLog] Actualize
[ci skip]

3 years ago[redtube] Extend _VALID_URL (#26506)
nixxo [Sun, 20 Sep 2020 04:39:42 +0000 (06:39 +0200)] 
[redtube] Extend _VALID_URL (#26506)

3 years ago[twitch] Switch streams to GraphQL and refactor (closes #26535)
Sergey M․ [Sun, 20 Sep 2020 03:05:00 +0000 (10:05 +0700)] 
[twitch] Switch streams to GraphQL and refactor (closes #26535)

3 years agoSwitch from binary search tree to Python sets
Jody Bruchon [Sat, 19 Sep 2020 01:18:23 +0000 (21:18 -0400)] 
Switch from binary search tree to Python sets

Signed-off-by: Jody Bruchon <redacted>
3 years ago[telequebec] Fix issues (closes #26368)
Sergey M․ [Sat, 19 Sep 2020 00:52:42 +0000 (07:52 +0700)] 
[telequebec] Fix issues (closes #26368)

3 years ago[telequebec] Add support for brightcove videos (closes #25833)
Patrick Dessalle [Wed, 28 Aug 2019 17:04:57 +0000 (19:04 +0200)] 
[telequebec] Add support for brightcove videos (closes #25833)

3 years ago[pornhub] Extract metadata from JSON-LD (closes #26614)
Sergey M․ [Fri, 18 Sep 2020 23:34:34 +0000 (06:34 +0700)] 
[pornhub] Extract metadata from JSON-LD (closes #26614)

3 years ago[extractor/common] Relax interaction count extraction in _json_ld
Sergey M․ [Fri, 18 Sep 2020 23:33:17 +0000 (06:33 +0700)] 
[extractor/common] Relax interaction count extraction in _json_ld

3 years ago[extractor/common] Extract author as uploader for VideoObject in _json_ld
Sergey M․ [Fri, 18 Sep 2020 23:13:42 +0000 (06:13 +0700)] 
[extractor/common] Extract author as uploader for VideoObject in _json_ld

3 years ago[pornhub] Fix view count extraction (#26621) (refs #26614)
JChris246 [Fri, 18 Sep 2020 22:59:19 +0000 (18:59 -0400)] 
[pornhub] Fix view count extraction (#26621) (refs #26614)

3 years agoRandomize the ArchiveTree the proper Python way
Jody Bruchon [Fri, 18 Sep 2020 18:22:42 +0000 (14:22 -0400)] 
Randomize the ArchiveTree the proper Python way

Signed-off-by: Jody Bruchon <redacted>
3 years ago[skip travis] Update issue templates
Tom-Oliver Heidel [Fri, 18 Sep 2020 14:22:24 +0000 (16:22 +0200)] 
[skip travis] Update issue templates

3 years agoMerge pull request #125 from jbruchon/master
Tom-Oliver Heidel [Fri, 18 Sep 2020 13:59:31 +0000 (15:59 +0200)] 
Merge pull request #125 from jbruchon/master

Keep download archive in memory for better performance

3 years agoStyle revisions
Jody Bruchon [Fri, 18 Sep 2020 13:35:21 +0000 (09:35 -0400)] 
Style revisions

3 years agoMerge remote-tracking branch 'upstream/master'
Jody Bruchon [Fri, 18 Sep 2020 12:49:11 +0000 (08:49 -0400)] 
Merge remote-tracking branch 'upstream/master'

3 years ago[hotstar] regex the second.
Unknown [Fri, 18 Sep 2020 12:15:34 +0000 (14:15 +0200)] 
[hotstar] regex the second.

3 years agoFix wrong variable in position swap corrupting archive list
Jody Bruchon [Fri, 18 Sep 2020 04:11:36 +0000 (00:11 -0400)] 
Fix wrong variable in position swap corrupting archive list

It's always a simple error in the end, you know?

Signed-off-by: Jody Bruchon <redacted>
3 years agoRandomize archive order before populating search tree
Jody Bruchon [Fri, 18 Sep 2020 01:45:40 +0000 (21:45 -0400)] 
Randomize archive order before populating search tree

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 <redacted>
3 years ago[downloader/hls] Fix incorrect end byte in Range HTTP header for media segments with...
Stefan Pöschel [Thu, 17 Sep 2020 22:26:56 +0000 (00:26 +0200)] 
[downloader/hls] Fix incorrect end byte in Range HTTP header for media 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.

3 years agoTry to mitigate the problem of loading a fully sorted archive
Jody Bruchon [Thu, 17 Sep 2020 21:28:22 +0000 (17:28 -0400)] 
Try to mitigate the problem of loading a fully sorted archive

Sorted archives turn the binary tree into a linked list and make
things horribly slow. This is an incomplete mitigation for this
issue.

3 years ago[extractor/common] Handle ssl.CertificateError in _request_webpage (closes #26601)
Sergey M․ [Thu, 17 Sep 2020 20:41:16 +0000 (03:41 +0700)] 
[extractor/common] Handle ssl.CertificateError in _request_webpage (closes #26601)

ssl.CertificateError is raised on some python versions <= 3.7.x

3 years ago[downloader/http] Improve timeout detection when reading block of data (refs #10935)
Sergey M․ [Thu, 17 Sep 2020 20:32:54 +0000 (03:32 +0700)] 
[downloader/http] Improve timeout detection when reading block of data (refs #10935)

3 years ago[downloader/http] Retry download when urlopen times out (#26603) (refs #10935)
Ori Avtalion [Thu, 17 Sep 2020 20:15:44 +0000 (23:15 +0300)] 
[downloader/http] Retry download when urlopen times out (#26603) (refs #10935)

3 years agoRemove recursion in at_insert()
Jody Bruchon [Thu, 17 Sep 2020 19:08:33 +0000 (15:08 -0400)] 
Remove recursion in at_insert()

3 years agoRemove debugging print statements
Jody Bruchon [Thu, 17 Sep 2020 18:46:11 +0000 (14:46 -0400)] 
Remove debugging print statements

3 years agoKeep download archive in memory for better performance
Jody Bruchon [Thu, 17 Sep 2020 18:22:07 +0000 (14:22 -0400)] 
Keep download archive in memory for better performance

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 <redacted>
3 years ago[hotstar] regex fix
Unknown [Thu, 17 Sep 2020 12:00:03 +0000 (14:00 +0200)] 
[hotstar] regex fix

3 years ago[skip travis] winver
Unknown [Wed, 16 Sep 2020 12:22:51 +0000 (14:22 +0200)] 
[skip travis] winver

3 years agobump version 2020.09.16
Unknown [Wed, 16 Sep 2020 11:55:35 +0000 (13:55 +0200)] 
bump version 2020.09.16

3 years ago[Core] hls manifests, dynamic mpd
Unknown [Wed, 16 Sep 2020 11:00:41 +0000 (13:00 +0200)] 
[Core] hls manifests, dynamic mpd

3 years agoMerge branch 'Zocker1999NET-ext/remuxe-video'
Tom-Oliver Heidel [Wed, 16 Sep 2020 08:31:30 +0000 (10:31 +0200)] 
Merge branch 'Zocker1999NET-ext/remuxe-video'

3 years agoMerge branch 'ext/remuxe-video' of https://github.com/Zocker1999NET/youtube-dl into...
Tom-Oliver Heidel [Wed, 16 Sep 2020 08:30:38 +0000 (10:30 +0200)] 
Merge branch 'ext/remuxe-video' of https://github.com/Zocker1999NET/youtube-dl into Zocker1999NET-ext/remuxe-video

3 years agoMerge pull request #110 from JensTimmerman/patch-5
Tom-Oliver Heidel [Mon, 14 Sep 2020 13:12:26 +0000 (15:12 +0200)] 
Merge pull request #110 from JensTimmerman/patch-5

Update README.md

3 years agoUpdate README.md
Jens Timmerman [Mon, 14 Sep 2020 11:59:51 +0000 (13:59 +0200)] 
Update README.md

cleanup + typo fix

3 years agoMerge branch 'tpikonen-elonet'
Tom-Oliver Heidel [Mon, 14 Sep 2020 11:26:09 +0000 (13:26 +0200)] 
Merge branch 'tpikonen-elonet'

3 years agoMerge branch 'elonet' of https://github.com/tpikonen/youtube-dl into tpikonen-elonet
Tom-Oliver Heidel [Mon, 14 Sep 2020 11:24:18 +0000 (13:24 +0200)] 
Merge branch 'elonet' of https://github.com/tpikonen/youtube-dl into tpikonen-elonet

3 years agoMerge branch 'fix-mitele' of https://github.com/DjMoren/youtube-dl
Tom-Oliver Heidel [Mon, 14 Sep 2020 11:22:50 +0000 (13:22 +0200)] 
Merge branch 'fix-mitele' of https://github.com/DjMoren/youtube-dl

3 years agoMerge branch 'DjMoren-fix-mitele'
Tom-Oliver Heidel [Mon, 14 Sep 2020 11:20:00 +0000 (13:20 +0200)] 
Merge branch 'DjMoren-fix-mitele'

3 years agoMerge branch 'arbitrary-merges' of https://github.com/fstirlitz/youtube-dlc
Tom-Oliver Heidel [Mon, 14 Sep 2020 11:04:24 +0000 (13:04 +0200)] 
Merge branch 'arbitrary-merges' of https://github.com/fstirlitz/youtube-dlc

3 years agoMerge branch 'ytdl-org-master'
Unknown [Mon, 14 Sep 2020 10:54:54 +0000 (12:54 +0200)] 
Merge branch 'ytdl-org-master'

3 years agoSupport arbitrary stream merges
felix [Tue, 4 Aug 2015 07:07:44 +0000 (09:07 +0200)] 
Support arbitrary stream merges

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.

3 years agomerge ytdl-master
Unknown [Mon, 14 Sep 2020 10:50:56 +0000 (12:50 +0200)] 
merge ytdl-master

3 years agoMerge pull request #105 from JensTimmerman/patch-3
Tom-Oliver Heidel [Mon, 14 Sep 2020 05:20:25 +0000 (07:20 +0200)] 
Merge pull request #105 from JensTimmerman/patch-3

Update README.md

3 years agorelease 2020.09.14
Sergey M․ [Sun, 13 Sep 2020 20:37:36 +0000 (03:37 +0700)] 
release 2020.09.14

3 years ago[ChangeLog] Actualize
Sergey M․ [Sun, 13 Sep 2020 20:35:18 +0000 (03:35 +0700)] 
[ChangeLog] Actualize
[ci skip]

3 years ago[postprocessor/embedthumbnail] Fix issues (closes #25717)
Sergey M․ [Sun, 13 Sep 2020 20:28:31 +0000 (03:28 +0700)] 
[postprocessor/embedthumbnail] Fix issues (closes #25717)
* Fix WebP with wrong extension processing
* Fix embedding of thumbnails with % character in path

3 years ago[postprocessor/embedthumbnail] Add support for non jpeg/png thumbnails (closes #25687)
Alex Merkel [Thu, 18 Jun 2020 20:36:44 +0000 (22:36 +0200)] 
[postprocessor/embedthumbnail] Add support for non jpeg/png thumbnails (closes #25687)

3 years agoUpdate README.md
Jens Timmerman [Sun, 13 Sep 2020 15:39:53 +0000 (17:39 +0200)] 
Update README.md

3 years ago[rtlnl] Extend _VALID_URL for new embed URL schema
Sergey M․ [Sun, 13 Sep 2020 14:42:06 +0000 (21:42 +0700)] 
[rtlnl] Extend _VALID_URL for new embed URL schema

3 years ago[rtlnl] Extend _VALID_URL (#26549) (closes #25821)
Derek Land [Sun, 13 Sep 2020 14:38:16 +0000 (16:38 +0200)] 
[rtlnl] Extend _VALID_URL (#26549) (closes #25821)

3 years ago[youtube] Fix empty description extraction (#26575) (closes #26006)
Daniel Peukert [Sun, 13 Sep 2020 14:23:21 +0000 (16:23 +0200)] 
[youtube] Fix empty description extraction (#26575) (closes #26006)

3 years ago[srgssr] Extend _VALID_URL (closes #26555, closes #26556, closes #26578)
Sergey M․ [Sun, 13 Sep 2020 14:07:25 +0000 (21:07 +0700)] 
[srgssr] Extend _VALID_URL (closes #26555, closes #26556, closes #26578)

3 years ago[googledrive] Use redirect URLs for source format (closes #18877, closes #23919,...
Sergey M․ [Sun, 13 Sep 2020 13:43:50 +0000 (20:43 +0700)] 
[googledrive] Use redirect URLs for source format (closes #18877, closes #23919, closes #24689, closes #26565)

3 years agoMerge pull request #102 from blackjack4494/gdcvault-fix
Tom-Oliver Heidel [Sun, 13 Sep 2020 13:22:33 +0000 (15:22 +0200)] 
Merge pull request #102 from blackjack4494/gdcvault-fix

[gdcvault] fix extractor

3 years agoflake8
Unknown [Sun, 13 Sep 2020 13:21:59 +0000 (15:21 +0200)] 
flake8

3 years ago[skip travis] bump version
Unknown [Sun, 13 Sep 2020 13:16:38 +0000 (15:16 +0200)] 
[skip travis] bump version

3 years ago[svtplay] Fix id extraction (closes #26576)
Sergey M․ [Sun, 13 Sep 2020 11:59:37 +0000 (18:59 +0700)] 
[svtplay] Fix id extraction (closes #26576)

3 years agoMerge pull request #96 from blackjack4494/kakao-new-apis
Tom-Oliver Heidel [Sun, 13 Sep 2020 10:47:12 +0000 (12:47 +0200)] 
Merge pull request #96 from blackjack4494/kakao-new-apis

[kakao] new apis

3 years agoMerge pull request #95 from blackjack4494/daserste-ndr
Tom-Oliver Heidel [Sun, 13 Sep 2020 10:36:17 +0000 (12:36 +0200)] 
Merge pull request #95 from blackjack4494/daserste-ndr

[ndr] support Daserste ndr

3 years ago[kakao] new apis
Unknown [Sun, 13 Sep 2020 10:31:36 +0000 (12:31 +0200)] 
[kakao] new apis

there are also ageLimit and GeoBlock attributes provided by api_json if needed

3 years ago[redbulltv] improve support for rebull.com TV localized URLS(#22063)
Remita Amine [Sun, 13 Sep 2020 10:26:11 +0000 (11:26 +0100)] 
[redbulltv] improve support for rebull.com TV localized URLS(#22063)

3 years agoMerge pull request #94 from blackjack4494/conv_subs_when_skipped
Tom-Oliver Heidel [Sun, 13 Sep 2020 09:17:11 +0000 (11:17 +0200)] 
Merge pull request #94 from blackjack4494/conv_subs_when_skipped

[youtube] Convert subs when download is skipped

3 years agoflake8
Unknown [Sun, 13 Sep 2020 09:08:02 +0000 (11:08 +0200)] 
flake8

3 years ago[youtube] convert subtitles with --skip-download
Unknown [Sun, 13 Sep 2020 09:03:48 +0000 (11:03 +0200)] 
[youtube] convert subtitles with --skip-download

3 years agoadd json3 back but don't use it as default.
Unknown [Sun, 13 Sep 2020 09:02:07 +0000 (11:02 +0200)] 
add json3 back but don't use it as default.

3 years agoexclude json3 for now
Unknown [Sun, 13 Sep 2020 07:22:24 +0000 (09:22 +0200)] 
exclude json3 for now

3 years ago[gdcvault] fix extractor
Unknown [Sat, 12 Sep 2020 23:04:02 +0000 (01:04 +0200)] 
[gdcvault] fix extractor

at least when not logged in?

3 years ago[skip travis] create faq.md
Tom-Oliver Heidel [Sat, 12 Sep 2020 22:47:45 +0000 (00:47 +0200)] 
[skip travis] create faq.md

how to redirect to another extractor

3 years ago[redbulltv] Add support for new redbull.com TV URLs(closes #22037)(closes #22063)
Remita Amine [Sat, 12 Sep 2020 18:20:53 +0000 (19:20 +0100)] 
[redbulltv] Add support for new redbull.com TV URLs(closes #22037)(closes #22063)

3 years ago[dispeak] mark the "slides" stream as video-only
felix [Mon, 3 Aug 2015 15:43:57 +0000 (17:43 +0200)] 
[dispeak] mark the "slides" stream as video-only

3 years ago[soundcloud] Reduce pagination limit to fix 502 Bad Gateway errors when listing a...
tfvlrue [Sat, 12 Sep 2020 09:35:11 +0000 (05:35 -0400)] 
[soundcloud] Reduce pagination limit to fix 502 Bad Gateway errors when listing a user's tracks. (#26557)

Per the documentation here https://developers.soundcloud.com/blog/offset-pagination-deprecated the maximum limit is 200, so let's respect that (even if a higher value sometimes works).

Co-authored-by: tfvlrue <tfvlrue>
3 years ago[skip travis] update supportedsites and make_win.bat
Unknown [Sat, 12 Sep 2020 06:22:59 +0000 (08:22 +0200)] 
[skip travis] update supportedsites and make_win.bat

3 years ago[skip travis] bump version
Unknown [Sat, 12 Sep 2020 04:17:02 +0000 (06:17 +0200)] 
[skip travis] bump version

3 years agoMerge branch 'skyme5-tiktok'
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:51:27 +0000 (05:51 +0200)] 
Merge branch 'skyme5-tiktok'

3 years agoMerge branch 'tiktok' of https://github.com/skyme5/youtube-dl into skyme5-tiktok
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:49:52 +0000 (05:49 +0200)] 
Merge branch 'tiktok' of https://github.com/skyme5/youtube-dl into skyme5-tiktok

3 years agoMerge branch 'lkho-pr/duboku'
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:47:29 +0000 (05:47 +0200)] 
Merge branch 'lkho-pr/duboku'

3 years agoMerge branch 'pr/duboku' of https://github.com/lkho/youtube-dl into lkho-pr/duboku
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:47:27 +0000 (05:47 +0200)] 
Merge branch 'pr/duboku' of https://github.com/lkho/youtube-dl into lkho-pr/duboku

3 years agoMerge branch 'hugohaa-alura'
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:38:48 +0000 (05:38 +0200)] 
Merge branch 'hugohaa-alura'

3 years agoMerge branch 'alura' of https://github.com/hugohaa/youtube-dl into hugohaa-alura
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:38:44 +0000 (05:38 +0200)] 
Merge branch 'alura' of https://github.com/hugohaa/youtube-dl into hugohaa-alura

3 years agoMerge branch 'adrianheine-26564'
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:37:12 +0000 (05:37 +0200)] 
Merge branch 'adrianheine-26564'

3 years agoMerge branch '26564' of https://github.com/adrianheine/youtube-dl into adrianheine...
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:37:08 +0000 (05:37 +0200)] 
Merge branch '26564' of https://github.com/adrianheine/youtube-dl into adrianheine-26564

3 years agoMerge branch 'ddland-master'
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:35:10 +0000 (05:35 +0200)] 
Merge branch 'ddland-master'

3 years agoMerge branch 'master' of https://github.com/ddland/youtube-dl into ddland-master
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:34:59 +0000 (05:34 +0200)] 
Merge branch 'master' of https://github.com/ddland/youtube-dl into ddland-master

3 years agoMerge branch 'nixxo-patch-2'
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:33:31 +0000 (05:33 +0200)] 
Merge branch 'nixxo-patch-2'

3 years agoMerge branch 'patch-2' of https://github.com/nixxo/youtube-dl into nixxo-patch-2
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:33:16 +0000 (05:33 +0200)] 
Merge branch 'patch-2' of https://github.com/nixxo/youtube-dl into nixxo-patch-2

3 years agoMerge remote-tracking branch 'origin/master'
Unknown [Sat, 12 Sep 2020 03:22:29 +0000 (05:22 +0200)] 
Merge remote-tracking branch 'origin/master'

3 years agoMerge branch 'fonkap-myvideo_ge'
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:22:16 +0000 (05:22 +0200)] 
Merge branch 'fonkap-myvideo_ge'

3 years agoMerge branch 'myvideo_ge' of https://github.com/fonkap/youtube-dl into fonkap-myvideo_ge
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:22:08 +0000 (05:22 +0200)] 
Merge branch 'myvideo_ge' of https://github.com/fonkap/youtube-dl into fonkap-myvideo_ge

3 years agoMerge pull request #69 from blackjack4494/viki-subtitles_and_more
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:21:46 +0000 (05:21 +0200)] 
Merge pull request #69 from blackjack4494/viki-subtitles_and_more

[Viki] subtitles, formats

3 years agoMerge branch 'iamleot-rai-update'
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:12:24 +0000 (05:12 +0200)] 
Merge branch 'iamleot-rai-update'

3 years agoMerge branch 'rai-update' of https://github.com/iamleot/youtube-dl into iamleot-rai...
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:12:19 +0000 (05:12 +0200)] 
Merge branch 'rai-update' of https://github.com/iamleot/youtube-dl into iamleot-rai-update

3 years agoMerge branch 'JensTimmerman-JensTimmerman-patch-1'
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:10:59 +0000 (05:10 +0200)] 
Merge branch 'JensTimmerman-JensTimmerman-patch-1'

3 years agoMerge branch 'JensTimmerman-patch-1' of https://github.com/JensTimmerman/youtube...
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:10:55 +0000 (05:10 +0200)] 
Merge branch 'JensTimmerman-patch-1' of https://github.com/JensTimmerman/youtube-dl into JensTimmerman-JensTimmerman-patch-1

3 years agoMerge branch 'ytdl-org-master'
Unknown [Sat, 12 Sep 2020 03:08:57 +0000 (05:08 +0200)] 
Merge branch 'ytdl-org-master'

3 years agoMerge branch 'legraphista-fix/google-drive-cookie-issue'
Tom-Oliver Heidel [Sat, 12 Sep 2020 03:02:18 +0000 (05:02 +0200)] 
Merge branch 'legraphista-fix/google-drive-cookie-issue'