mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[udemy] Improve course id extraction (closes #14938)
This commit is contained in:
parent
a3de5e6c0e
commit
6f1ec339a0
@ -62,11 +62,11 @@ class UdemyIE(InfoExtractor):
|
|||||||
def _extract_course_info(self, webpage, video_id):
|
def _extract_course_info(self, webpage, video_id):
|
||||||
course = self._parse_json(
|
course = self._parse_json(
|
||||||
unescapeHTML(self._search_regex(
|
unescapeHTML(self._search_regex(
|
||||||
r'ng-init=["\'].*\bcourse=({.+?});', webpage, 'course', default='{}')),
|
r'ng-init=["\'].*\bcourse=({.+?})[;"\']',
|
||||||
|
webpage, 'course', default='{}')),
|
||||||
video_id, fatal=False) or {}
|
video_id, fatal=False) or {}
|
||||||
course_id = course.get('id') or self._search_regex(
|
course_id = course.get('id') or self._search_regex(
|
||||||
(r'"id"\s*:\s*(\d+)', r'data-course-id=["\'](\d+)'),
|
r'data-course-id=["\'](\d+)', webpage, 'course id')
|
||||||
webpage, 'course id')
|
|
||||||
return course_id, course.get('title')
|
return course_id, course.get('title')
|
||||||
|
|
||||||
def _enroll_course(self, base_url, webpage, course_id):
|
def _enroll_course(self, base_url, webpage, course_id):
|
||||||
|
Loading…
Reference in New Issue
Block a user