mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[mit] Remove support for video.mit.edu(closes #22403)
This commit is contained in:
parent
2b115b9460
commit
d07866f13e
@ -644,7 +644,7 @@
|
|||||||
from .ministrygrid import MinistryGridIE
|
from .ministrygrid import MinistryGridIE
|
||||||
from .minoto import MinotoIE
|
from .minoto import MinotoIE
|
||||||
from .miomio import MioMioIE
|
from .miomio import MioMioIE
|
||||||
from .mit import TechTVMITIE, MITIE, OCWMITIE
|
from .mit import TechTVMITIE, OCWMITIE
|
||||||
from .mitele import MiTeleIE
|
from .mitele import MiTeleIE
|
||||||
from .mixcloud import (
|
from .mixcloud import (
|
||||||
MixcloudIE,
|
MixcloudIE,
|
||||||
|
@ -65,30 +65,6 @@ def _real_extract(self, url):
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
class MITIE(TechTVMITIE):
|
|
||||||
IE_NAME = 'video.mit.edu'
|
|
||||||
_VALID_URL = r'https?://video\.mit\.edu/watch/(?P<title>[^/]+)'
|
|
||||||
|
|
||||||
_TEST = {
|
|
||||||
'url': 'http://video.mit.edu/watch/the-government-is-profiling-you-13222/',
|
|
||||||
'md5': '7db01d5ccc1895fc5010e9c9e13648da',
|
|
||||||
'info_dict': {
|
|
||||||
'id': '21783',
|
|
||||||
'ext': 'mp4',
|
|
||||||
'title': 'The Government is Profiling You',
|
|
||||||
'description': 'md5:ad5795fe1e1623b73620dbfd47df9afd',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
def _real_extract(self, url):
|
|
||||||
mobj = re.match(self._VALID_URL, url)
|
|
||||||
page_title = mobj.group('title')
|
|
||||||
webpage = self._download_webpage(url, page_title)
|
|
||||||
embed_url = self._search_regex(
|
|
||||||
r'<iframe .*?src="(.+?)"', webpage, 'embed url')
|
|
||||||
return self.url_result(embed_url)
|
|
||||||
|
|
||||||
|
|
||||||
class OCWMITIE(InfoExtractor):
|
class OCWMITIE(InfoExtractor):
|
||||||
IE_NAME = 'ocw.mit.edu'
|
IE_NAME = 'ocw.mit.edu'
|
||||||
_VALID_URL = r'^https?://ocw\.mit\.edu/courses/(?P<topic>[a-z0-9\-]+)'
|
_VALID_URL = r'^https?://ocw\.mit\.edu/courses/(?P<topic>[a-z0-9\-]+)'
|
||||||
|
Loading…
Reference in New Issue
Block a user