logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git
commit: a03b9775d544b06a5b4f2aa630214c7c22fc2229
parent 8a158a936c8b002ef536e9e2b778ded02c09c0fa
Author: dirkf <fieldhouse@gmx.net>
Date:   Sun, 26 Jun 2022 14:18:33 +0100

[Mediaset] Support player version number in URL pattern

Ref: https://github.com/yt-dlp/yt-dlp/issues/4141

Diffstat:

Myoutube_dl/extractor/mediaset.py6+++++-
1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/mediaset.py b/youtube_dl/extractor/mediaset.py @@ -24,7 +24,7 @@ class MediasetIE(ThePlatformBaseIE): (?:(?:www|static3)\.)?mediasetplay\.mediaset\.it/ (?: (?:video|on-demand|movie)/(?:[^/]+/)+[^/]+_| - player/index\.html\?.*?\bprogramGuid= + player(?:/v\d+)?/index\.html\?.*?\bprogramGuid= ) )(?P<id>[0-9A-Z]{16,}) ''' @@ -74,6 +74,10 @@ class MediasetIE(ThePlatformBaseIE): 'url': 'https://static3.mediasetplay.mediaset.it/player/index.html?appKey=5ad3966b1de1c4000d5cec48&programGuid=FAFU000000665104&id=665104', 'only_matching': True, }, { + # embedUrl (from https://www.wittytv.it/amici/est-ce-que-tu-maimes-gabriele-5-dicembre-copia/) + 'url': 'https://static3.mediasetplay.mediaset.it/player/v2/index.html?partnerId=wittytv&configId=&programGuid=FD00000000153323&autoplay=true&purl=http://www.wittytv.it/amici/est-ce-que-tu-maimes-gabriele-5-dicembre-copia/', + 'only_matching': True, + }, { 'url': 'mediaset:FAFU000000665924', 'only_matching': True, }, {