mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-16 01:25:06 +00:00
[videolecturesnet] Improve playlist extraction
This commit is contained in:
parent
0c996b9f48
commit
fb97809e64
1 changed files with 20 additions and 12 deletions
|
@ -3,8 +3,14 @@
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..compat import compat_urlparse
|
from ..compat import (
|
||||||
from ..utils import parse_duration
|
compat_HTTPError,
|
||||||
|
compat_urlparse,
|
||||||
|
)
|
||||||
|
from ..utils import (
|
||||||
|
ExtractorError,
|
||||||
|
parse_duration,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class VideoLecturesNetIE(InfoExtractor):
|
class VideoLecturesNetIE(InfoExtractor):
|
||||||
|
@ -28,10 +34,12 @@ def _real_extract(self, url):
|
||||||
video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
|
|
||||||
smil_url = 'http://videolectures.net/%s/video/1/smil.xml' % video_id
|
smil_url = 'http://videolectures.net/%s/video/1/smil.xml' % video_id
|
||||||
smil = self._download_smil(smil_url, video_id, fatal=False)
|
|
||||||
|
|
||||||
|
try:
|
||||||
|
smil = self._download_smil(smil_url, video_id)
|
||||||
|
except ExtractorError as e:
|
||||||
|
if isinstance(e.cause, compat_HTTPError) and e.cause.code == 404:
|
||||||
# Probably a playlist
|
# Probably a playlist
|
||||||
if smil is False:
|
|
||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
entries = [
|
entries = [
|
||||||
self.url_result(compat_urlparse.urljoin(url, video_url), 'VideoLecturesNet')
|
self.url_result(compat_urlparse.urljoin(url, video_url), 'VideoLecturesNet')
|
||||||
|
|
Loading…
Reference in a new issue