Explorar o código

[brightcove] Support redirected urls from bcove.me (fixes #1732)

'bctid' needs to be changed to '@videoPlayer', and 'bckey' to 'playerKey'.
Jaime Marquínez Ferrándiz %!s(int64=12) %!d(string=hai) anos
pai
achega
51040b72ed
Modificáronse 1 ficheiros con 4 adicións e 2 borrados
  1. 4 2
      youtube_dl/extractor/brightcove.py

+ 4 - 2
youtube_dl/extractor/brightcove.py

@@ -97,8 +97,10 @@ class BrightcoveIE(InfoExtractor):
             return None
             return None
 
 
     def _real_extract(self, url):
     def _real_extract(self, url):
-        # Change the 'videoId' or 'videoID' field to '@videoPlayer'
-        url = re.sub(r'(?<=[?&])videoI(d|D)', '%40videoPlayer', url)
+        # Change the 'videoId' and others field to '@videoPlayer'
+        url = re.sub(r'(?<=[?&])(videoI(d|D)|bctid)', '%40videoPlayer', url)
+        # Change bckey (used by bcove.me urls) to playerKey
+        url = re.sub(r'(?<=[?&])bckey', 'playerKey', url)
         mobj = re.match(self._VALID_URL, url)
         mobj = re.match(self._VALID_URL, url)
         query_str = mobj.group('query')
         query_str = mobj.group('query')
         query = compat_urlparse.parse_qs(query_str)
         query = compat_urlparse.parse_qs(query_str)