diff options
Diffstat (limited to 'youtube_dl/extractor/condenast.py')
| -rw-r--r-- | youtube_dl/extractor/condenast.py | 50 | 
1 files changed, 39 insertions, 11 deletions
| diff --git a/youtube_dl/extractor/condenast.py b/youtube_dl/extractor/condenast.py index 3db4db4e4..6f92ae2ed 100644 --- a/youtube_dl/extractor/condenast.py +++ b/youtube_dl/extractor/condenast.py @@ -2,7 +2,6 @@  from __future__ import unicode_literals  import re -import json  from .common import InfoExtractor  from ..compat import ( @@ -12,6 +11,7 @@ from ..compat import (  )  from ..utils import (      orderedSet, +    remove_end,  ) @@ -24,21 +24,33 @@ class CondeNastIE(InfoExtractor):      # The keys are the supported sites and the values are the name to be shown      # to the user and in the extractor description.      _SITES = { -        'wired': 'WIRED', +        'allure': 'Allure', +        'architecturaldigest': 'Architectural Digest', +        'arstechnica': 'Ars Technica', +        'bonappetit': 'Bon Appétit', +        'brides': 'Brides', +        'cnevids': 'Condé Nast', +        'cntraveler': 'Condé Nast Traveler', +        'details': 'Details', +        'epicurious': 'Epicurious', +        'glamour': 'Glamour', +        'golfdigest': 'Golf Digest',          'gq': 'GQ', +        'newyorker': 'The New Yorker', +        'self': 'SELF', +        'teenvogue': 'Teen Vogue', +        'vanityfair': 'Vanity Fair',          'vogue': 'Vogue', -        'glamour': 'Glamour', +        'wired': 'WIRED',          'wmagazine': 'W Magazine', -        'vanityfair': 'Vanity Fair', -        'cnevids': 'Condé Nast',      } -    _VALID_URL = r'http://(video|www|player)\.(?P<site>%s)\.com/(?P<type>watch|series|video|embed)/(?P<id>[^/?#]+)' % '|'.join(_SITES.keys()) +    _VALID_URL = r'http://(?:video|www|player)\.(?P<site>%s)\.com/(?P<type>watch|series|video|embed(?:js)?)/(?P<id>[^/?#]+)' % '|'.join(_SITES.keys())      IE_DESC = 'Condé Nast media group: %s' % ', '.join(sorted(_SITES.values())) -    EMBED_URL = r'(?:https?:)?//player\.(?P<site>%s)\.com/(?P<type>embed)/.+?' % '|'.join(_SITES.keys()) +    EMBED_URL = r'(?:https?:)?//player\.(?P<site>%s)\.com/(?P<type>embed(?:js)?)/.+?' % '|'.join(_SITES.keys()) -    _TEST = { +    _TESTS = [{          'url': 'http://video.wired.com/watch/3d-printed-speakers-lit-with-led',          'md5': '1921f713ed48aabd715691f774c451f7',          'info_dict': { @@ -47,7 +59,16 @@ class CondeNastIE(InfoExtractor):              'title': '3D Printed Speakers Lit With LED',              'description': 'Check out these beautiful 3D printed LED speakers.  You can\'t actually buy them, but LumiGeek is working on a board that will let you make you\'re own.',          } -    } +    }, { +        # JS embed +        'url': 'http://player.cnevids.com/embedjs/55f9cf8b61646d1acf00000c/5511d76261646d5566020000.js', +        'md5': 'f1a6f9cafb7083bab74a710f65d08999', +        'info_dict': { +            'id': '55f9cf8b61646d1acf00000c', +            'ext': 'mp4', +            'title': '3D printed TSA Travel Sentry keys really do open TSA locks', +        } +    }]      def _extract_series(self, url, webpage):          title = self._html_search_regex(r'<div class="cne-series-info">.*?<h1>(.+?)</h1>', @@ -86,8 +107,8 @@ class CondeNastIE(InfoExtractor):          info_url = base_info_url + data          info_page = self._download_webpage(info_url, video_id,                                             'Downloading video info') -        video_info = self._search_regex(r'var video = ({.+?});', info_page, 'video info') -        video_info = json.loads(video_info) +        video_info = self._search_regex(r'var\s+video\s*=\s*({.+?});', info_page, 'video info') +        video_info = self._parse_json(video_info, video_id)          formats = [{              'format_id': '%s-%s' % (fdata['type'].split('/')[-1], fdata['quality']), @@ -111,6 +132,13 @@ class CondeNastIE(InfoExtractor):          url_type = mobj.group('type')          item_id = mobj.group('id') +        # Convert JS embed to regular embed +        if url_type == 'embedjs': +            parsed_url = compat_urlparse.urlparse(url) +            url = compat_urlparse.urlunparse(parsed_url._replace( +                path=remove_end(parsed_url.path, '.js').replace('/embedjs/', '/embed/'))) +            url_type = 'embed' +          self.to_screen('Extracting from %s with the Condé Nast extractor' % self._SITES[site])          webpage = self._download_webpage(url, item_id) | 
