Browse Source

[tf1] fix wat id extraction(closes #9862)

totalwebcasting
Remita Amine 8 years ago
parent
commit
22b7ac13ef
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/tf1.py

+ 1
- 1
youtube_dl/extractor/tf1.py View File

@ -48,6 +48,6 @@ 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{8}).*?\1',
r'(["\'])(?:https?:)?//www\.wat\.tv/embedframe/.*?(?P<id>\d{8})\1',
webpage, 'wat id', group='id')
return self.url_result('wat:%s' % wat_id, 'Wat')

Loading…
Cancel
Save