youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit ae5e94808e70e608e6bbdf71c0fb8436bcaa76e2
parent d7ffcfcf9703f1f02e642d0855c0977056e2d0fc
Author: Sergey M․ <dstftw@gmail.com>
Date:   Tue, 15 Dec 2015 21:11:52 +0600

[tf1] Fix extraction (2)

Diffstat:
Myoutube_dl/extractor/tf1.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/tf1.py b/youtube_dl/extractor/tf1.py @@ -44,7 +44,7 @@ class TF1IE(InfoExtractor): video_id = self._match_id(url) webpage = self._download_webpage(url, video_id) wat_id = self._html_search_regex( - r'(["\'])(?:https?:)?//www\.wat\.tv/embedframe/.*?(?P<id>\d+)\1', + r'(["\'])(?:https?:)?//www\.wat\.tv/embedframe/.*?(?P<id>\d{8})\1', webpage, 'wat id', group='id') wat_info = self._download_json( 'http://www.wat.tv/interface/contentv3/%s' % wat_id, video_id)