1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-02-26 22:37:03 +01:00

[udemy] Update course id regex to cover v4 layout (Closes , closes , closes )

This commit is contained in:
Quan Hua 2016-03-16 10:15:39 +07:00 committed by Sergey M․
parent 83548824c2
commit a7ba57dc17

View File

@ -144,7 +144,8 @@ def _real_extract(self, url):
webpage = self._download_webpage(url, lecture_id)
course_id = self._search_regex(
r'data-course-id=["\'](\d+)', webpage, 'course id')
(r'data-course-id=["\'](\d+)', r'"id": (\d+)'),
webpage, 'course id')
try:
lecture = self._download_lecture(course_id, lecture_id)