X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fplays.py;h=c3c38cf4ac07787e520c7c2c7eac7da1ed2aa8b4;hb=f3a58d46bf969b33910479a3a6096635e793a553;hp=2aba7cb9c05b4cd89acc7715a1ad5c08401dccf3;hpb=d1ea5e171f817d94bc356a96e7eb6967919cc18d;p=youtube-dl diff --git a/youtube_dl/extractor/plays.py b/youtube_dl/extractor/plays.py index 2aba7cb9c..c3c38cf4a 100644 --- a/youtube_dl/extractor/plays.py +++ b/youtube_dl/extractor/plays.py @@ -26,8 +26,9 @@ class PlaysTVIE(InfoExtractor): title = self._og_search_title(webpage) content = self._parse_json( - self._search_regex(r'R\.bindContent\(({.+?})\);', webpage, - 'content'), video_id)['content'] + self._search_regex( + r'R\.bindContent\(({.+?})\);', webpage, + 'content'), video_id)['content'] mpd_url, sources = re.search( r'(?s)]+data-mpd="([^"]+)"[^>]*>(.+?)', content).groups()