Skip to content

Commit

Permalink
[kaltura] Add _extract_url with fixed regex
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw committed Jun 27, 2016
1 parent fd7a749 commit 9ea5c04
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions youtube_dl/extractor/kaltura.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,32 @@ class KalturaIE(InfoExtractor):
}
]

@staticmethod
def _extract_url(webpage):
mobj = (
re.search(
r"""(?xs)
kWidget\.(?:thumb)?[Ee]mbed\(
\{.*?
(?P<q1>['\"])wid(?P=q1)\s*:\s*
(?P<q2>['\"])_?(?P<partner_id>[^'\"]+)(?P=q2),.*?
(?P<q3>['\"])entry_?[Ii]d(?P=q3)\s*:\s*
(?P<q4>['\"])(?P<id>[^'\"]+)(?P=q4),
""", webpage) or
re.search(
r'''(?xs)
(?P<q1>["\'])
(?:https?:)?//cdnapi(?:sec)?\.kaltura\.com/.*?(?:p|partner_id)/(?P<partner_id>\d+).*?
(?P=q1).*?
(?:
entry_?[Ii]d|
(?P<q2>["\'])entry_?[Ii]d(?P=q2)
)\s*:\s*
(?P<q3>["\'])(?P<id>.+?)(?P=q3)
''', webpage))
if mobj:
return 'kaltura:%(partner_id)s:%(id)s' % mobj.groupdict()

def _kaltura_api_call(self, video_id, actions, *args, **kwargs):
params = actions[0]
if len(actions) > 1:
Expand Down

0 comments on commit 9ea5c04

Please sign in to comment.