diff options
| author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-04-12 17:26:09 +0800 | 
|---|---|---|
| committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-04-12 17:26:09 +0800 | 
| commit | c77a0c01cb409d067770bb5ae6ef82064856e027 (patch) | |
| tree | c75051bc0a4c398c58f689744d0c3f627fea10c6 | |
| parent | 12355ac4734507fbafba4ae0d876ff5fdecc08f9 (diff) | |
[groupon] Fix extraction
| -rw-r--r-- | youtube_dl/extractor/groupon.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/youtube_dl/extractor/groupon.py b/youtube_dl/extractor/groupon.py index 63c05b6a6..f6b69662b 100644 --- a/youtube_dl/extractor/groupon.py +++ b/youtube_dl/extractor/groupon.py @@ -16,14 +16,14 @@ class GrouponIE(InfoExtractor):          'playlist': [{              'info_dict': {                  'id': 'tubGNycTo_9Uxg82uESj4i61EYX8nyuf', -                'ext': 'mp4', +                'ext': 'flv',                  'title': 'Bikram Yoga Huntington Beach | Orange County',                  'description': 'md5:d41d8cd98f00b204e9800998ecf8427e',                  'duration': 44.961,              },          }],          'params': { -            'skip_download': 'HLS', +            'skip_download': 'HDS',          }      } @@ -32,7 +32,7 @@ class GrouponIE(InfoExtractor):          webpage = self._download_webpage(url, playlist_id)          payload = self._parse_json(self._search_regex( -            r'var\s+payload\s*=\s*(.*?);\n', webpage, 'payload'), playlist_id) +            r'(?:var\s+|window\.)payload\s*=\s*(.*?);\n', webpage, 'payload'), playlist_id)          videos = payload['carousel'].get('dealVideos', [])          entries = []          for v in videos: | 
