diff options
| -rw-r--r-- | test/test_playlists.py | 8 | ||||
| -rw-r--r-- | youtube_dl/extractor/brightcove.py | 22 | ||||
| -rw-r--r-- | youtube_dl/extractor/imdb.py | 5 | ||||
| -rw-r--r-- | youtube_dl/extractor/la7.py | 3 | 
4 files changed, 26 insertions, 12 deletions
diff --git a/test/test_playlists.py b/test/test_playlists.py index 3861224b0..b3ce6f71e 100644 --- a/test/test_playlists.py +++ b/test/test_playlists.py @@ -196,11 +196,11 @@ class TestPlaylists(unittest.TestCase):      def test_imdb_list(self):          dl = FakeYDL()          ie = ImdbListIE(dl) -        result = ie.extract('http://www.imdb.com/list/sMjedvGDd8U') +        result = ie.extract('http://www.imdb.com/list/JFs9NWw6XI0')          self.assertIsPlaylist(result) -        self.assertEqual(result['id'], 'sMjedvGDd8U') -        self.assertEqual(result['title'], 'Animated and Family Films') -        self.assertTrue(len(result['entries']) >= 48) +        self.assertEqual(result['id'], 'JFs9NWw6XI0') +        self.assertEqual(result['title'], 'March 23, 2012 Releases') +        self.assertEqual(len(result['entries']), 7)      def test_khanacademy_topic(self):          dl = FakeYDL() diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py index 443294e6f..717e151d9 100644 --- a/youtube_dl/extractor/brightcove.py +++ b/youtube_dl/extractor/brightcove.py @@ -23,7 +23,6 @@ from ..utils import (  class BrightcoveIE(InfoExtractor):      _VALID_URL = r'https?://.*brightcove\.com/(services|viewer).*\?(?P<query>.*)'      _FEDERATED_URL_TEMPLATE = 'http://c.brightcove.com/services/viewer/htmlFederated?%s' -    _PLAYLIST_URL_TEMPLATE = 'http://c.brightcove.com/services/json/experience/runtime/?command=get_programming_for_experience&playerKey=%s'      _TESTS = [          { @@ -71,6 +70,17 @@ class BrightcoveIE(InfoExtractor):                  'uploader': 'National Ballet of Canada',              },          }, +        { +            # https://github.com/rg3/youtube-dl/issues/2253 +            'url': 'http://v.thestar.com/services/player/bcpid2071349530001?bckey=AQ~~,AAAAuO4KaJE~,gatFNwSKdGDmDpIYqNJ-fTHn_c4z_LH_&bctid=3101154703001', +            'file': '3101154703001.mp4', +            'md5': '0ba9446db037002366bab3b3eb30c88c', +            'info_dict': { +                'title': 'Still no power', +                'uploader': 'thestar.com', +                'description': 'Mississauga resident David Farmer is still out of power as a result of the ice storm a month ago. To keep the house warm, Farmer cuts wood from his property for a wood burning stove downstairs.', +            } +        }      ]      @classmethod @@ -131,6 +141,11 @@ class BrightcoveIE(InfoExtractor):          """Try to extract the brightcove url from the wepbage, returns None          if it can't be found          """ + +        url_m = re.search(r'<meta\s+property="og:video"\s+content="(http://c.brightcove.com/[^"]+)"', webpage) +        if url_m: +            return url_m.group(1) +          m_brightcove = re.search(              r'''(?sx)<object              (?: @@ -183,8 +198,9 @@ class BrightcoveIE(InfoExtractor):          return self._extract_video_info(video_info)      def _get_playlist_info(self, player_key): -        playlist_info = self._download_webpage(self._PLAYLIST_URL_TEMPLATE % player_key, -                                               player_key, 'Downloading playlist information') +        info_url = 'http://c.brightcove.com/services/json/experience/runtime/?command=get_programming_for_experience&playerKey=%s' % player_key +        playlist_info = self._download_webpage( +            info_url, player_key, 'Downloading playlist information')          json_data = json.loads(playlist_info)          if 'videoList' not in json_data: diff --git a/youtube_dl/extractor/imdb.py b/youtube_dl/extractor/imdb.py index 1763af020..7cee505c0 100644 --- a/youtube_dl/extractor/imdb.py +++ b/youtube_dl/extractor/imdb.py @@ -69,12 +69,9 @@ class ImdbListIE(InfoExtractor):          list_id = mobj.group('id')          webpage = self._download_webpage(url, list_id) -        list_code = self._search_regex( -            r'(?s)<div\s+class="list\sdetail">(.*?)class="see-more"', -            webpage, 'list code')          entries = [              self.url_result('http://www.imdb.com' + m, 'Imdb') -            for m in re.findall(r'href="(/video/imdb/vi[^"]+)"', webpage)] +            for m in re.findall(r'href="(/video/imdb/vi[^"]+)"\s+data-type="playlist"', webpage)]          list_title = self._html_search_regex(              r'<h1 class="header">(.*?)</h1>', webpage, 'list title') diff --git a/youtube_dl/extractor/la7.py b/youtube_dl/extractor/la7.py index 6d61f9a90..db2028e9f 100644 --- a/youtube_dl/extractor/la7.py +++ b/youtube_dl/extractor/la7.py @@ -26,7 +26,8 @@ class LA7IE(InfoExtractor):              'title': 'IL DIVO',              'description': 'Un film di Paolo Sorrentino con Toni Servillo, Anna Bonaiuto, Giulio Bosetti  e Flavio Bucci',              'duration': 6254, -        } +        }, +        'skip': 'Blocked in the US',      }      def _real_extract(self, url):  | 
