Skip to content

Commit

Permalink
[ie/khanacademy] Fix extractor (yt-dlp#10913)
Browse files Browse the repository at this point in the history
Closes yt-dlp#10912
Authored by: seproDev
  • Loading branch information
seproDev authored Sep 5, 2024
1 parent b6200bd commit 0fba084
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions yt_dlp/extractor/khanacademy.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class KhanAcademyBaseIE(InfoExtractor):
_VALID_URL_TEMPL = r'https?://(?:www\.)?khanacademy\.org/(?P<id>(?:[^/]+/){%s}%s[^?#/&]+)'

_PUBLISHED_CONTENT_VERSION = '171419ab20465d931b356f22d20527f13969bb70'
_PUBLISHED_CONTENT_VERSION = 'dc34750f0572c80f5effe7134082fe351143c1e4'

def _parse_video(self, video):
return {
Expand All @@ -39,7 +39,7 @@ def _real_extract(self, url):
query={
'fastly_cacheable': 'persist_until_publish',
'pcv': self._PUBLISHED_CONTENT_VERSION,
'hash': '1242644265',
'hash': '3712657851',
'variables': json.dumps({
'path': display_id,
'countryCode': 'US',
Expand Down

0 comments on commit 0fba084

Please sign in to comment.