1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-25 08:48:04 +02:00

[udemy:course] Use new URL format

This commit is contained in:
Sergey M․ 2016-04-01 02:24:22 +06:00
parent 4ecc1fc638
commit b53a06e3b9

View File

@ -305,7 +305,7 @@ def add_output_format_meta(f, key):
class UdemyCourseIE(UdemyIE):
IE_NAME = 'udemy:course'
_VALID_URL = r'https?://www\.udemy\.com/(?P<id>[\da-z-]+)'
_VALID_URL = r'https?://www\.udemy\.com/(?P<id>[^/?#&]+)'
_TESTS = []
@classmethod
@ -338,7 +338,7 @@ def _real_extract(self, url):
if lecture_id:
entry = {
'_type': 'url_transparent',
'url': 'https://www.udemy.com/%s/#/lecture/%s' % (course_path, entry['id']),
'url': 'https://www.udemy.com/%s/learn/v4/t/lecture/%s' % (course_path, entry['id']),
'title': entry.get('title'),
'ie_key': UdemyIE.ie_key(),
}