Skip to content

Commit

Permalink
[linkedin:learning] extract chapter_number and chapter_id(closes #19162)
Browse files Browse the repository at this point in the history
  • Loading branch information
remitamine authored and meunierd committed Feb 13, 2020
1 parent 67611cf commit da8b7c7
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions youtube_dl/extractor/linkedin.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,15 @@ def _call_api(self, course_slug, fields, video_slug=None, resolution=None):
'Csrf-Token': self._get_cookies(api_url)['JSESSIONID'].value,
}, query=query)['elements'][0]

def _get_video_id(self, urn, course_slug, video_slug):
def _get_urn_id(self, video_data):
urn = video_data.get('urn')
if urn:
mobj = re.search(r'urn:li:lyndaCourse:\d+,(\d+)', urn)
if mobj:
return mobj.group(1)
return '%s/%s' % (course_slug, video_slug)

def _get_video_id(self, video_data, course_slug, video_slug):
return self._get_urn_id(video_data) or '%s/%s' % (course_slug, video_slug)

def _real_initialize(self):
email, password = self._get_login_info()
Expand Down Expand Up @@ -123,7 +126,7 @@ def _real_extract(self, url):
self._sort_formats(formats, ('width', 'height', 'source_preference', 'tbr', 'abr'))

return {
'id': self._get_video_id(video_data.get('urn'), course_slug, video_slug),
'id': self._get_video_id(video_data, course_slug, video_slug),
'title': title,
'formats': formats,
'thumbnail': video_data.get('defaultThumbnail'),
Expand Down Expand Up @@ -154,18 +157,21 @@ def _real_extract(self, url):
course_data = self._call_api(course_slug, 'chapters,description,title')

entries = []
for chapter in course_data.get('chapters', []):
for chapter_number, chapter in enumerate(course_data.get('chapters', []), 1):
chapter_title = chapter.get('title')
chapter_id = self._get_urn_id(chapter)
for video in chapter.get('videos', []):
video_slug = video.get('slug')
if not video_slug:
continue
entries.append({
'_type': 'url_transparent',
'id': self._get_video_id(video.get('urn'), course_slug, video_slug),
'id': self._get_video_id(video, course_slug, video_slug),
'title': video.get('title'),
'url': 'https://www.linkedin.com/learning/%s/%s' % (course_slug, video_slug),
'chapter': chapter_title,
'chapter_number': chapter_number,
'chapter_id': chapter_id,
'ie_key': LinkedInLearningIE.ie_key(),
})

Expand Down

0 comments on commit da8b7c7

Please sign in to comment.