mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[ina] Move into own file
This commit is contained in:
parent
d26d440e19
commit
9fe4de3471
@ -34,6 +34,7 @@
|
|||||||
from .extractor.generic import GenericIE
|
from .extractor.generic import GenericIE
|
||||||
from .extractor.googleplus import GooglePlusIE
|
from .extractor.googleplus import GooglePlusIE
|
||||||
from .extractor.googlesearch import GoogleSearchIE
|
from .extractor.googlesearch import GoogleSearchIE
|
||||||
|
from .extractor.ina import InaIE
|
||||||
from .extractor.infoq import InfoQIE
|
from .extractor.infoq import InfoQIE
|
||||||
from .extractor.justintv import JustinTVIE
|
from .extractor.justintv import JustinTVIE
|
||||||
from .extractor.keek import KeekIE
|
from .extractor.keek import KeekIE
|
||||||
@ -103,32 +104,6 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
class InaIE(InfoExtractor):
|
|
||||||
"""Information Extractor for Ina.fr"""
|
|
||||||
_VALID_URL = r'(?:http://)?(?:www\.)?ina\.fr/video/(?P<id>I[0-9]+)/.*'
|
|
||||||
|
|
||||||
def _real_extract(self,url):
|
|
||||||
mobj = re.match(self._VALID_URL, url)
|
|
||||||
|
|
||||||
video_id = mobj.group('id')
|
|
||||||
mrss_url='http://player.ina.fr/notices/%s.mrss' % video_id
|
|
||||||
video_extension = 'mp4'
|
|
||||||
webpage = self._download_webpage(mrss_url, video_id)
|
|
||||||
|
|
||||||
self.report_extraction(video_id)
|
|
||||||
|
|
||||||
video_url = self._html_search_regex(r'<media:player url="(?P<mp4url>http://mp4.ina.fr/[^"]+\.mp4)',
|
|
||||||
webpage, u'video URL')
|
|
||||||
|
|
||||||
video_title = self._search_regex(r'<title><!\[CDATA\[(?P<titre>.*?)]]></title>',
|
|
||||||
webpage, u'title')
|
|
||||||
|
|
||||||
return [{
|
|
||||||
'id': video_id,
|
|
||||||
'url': video_url,
|
|
||||||
'ext': video_extension,
|
|
||||||
'title': video_title,
|
|
||||||
}]
|
|
||||||
|
|
||||||
class HowcastIE(InfoExtractor):
|
class HowcastIE(InfoExtractor):
|
||||||
"""Information Extractor for Howcast.com"""
|
"""Information Extractor for Howcast.com"""
|
||||||
|
31
youtube_dl/extractor/ina.py
Normal file
31
youtube_dl/extractor/ina.py
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
import re
|
||||||
|
|
||||||
|
from .common import InfoExtractor
|
||||||
|
|
||||||
|
|
||||||
|
class InaIE(InfoExtractor):
|
||||||
|
"""Information Extractor for Ina.fr"""
|
||||||
|
_VALID_URL = r'(?:http://)?(?:www\.)?ina\.fr/video/(?P<id>I[0-9]+)/.*'
|
||||||
|
|
||||||
|
def _real_extract(self,url):
|
||||||
|
mobj = re.match(self._VALID_URL, url)
|
||||||
|
|
||||||
|
video_id = mobj.group('id')
|
||||||
|
mrss_url='http://player.ina.fr/notices/%s.mrss' % video_id
|
||||||
|
video_extension = 'mp4'
|
||||||
|
webpage = self._download_webpage(mrss_url, video_id)
|
||||||
|
|
||||||
|
self.report_extraction(video_id)
|
||||||
|
|
||||||
|
video_url = self._html_search_regex(r'<media:player url="(?P<mp4url>http://mp4.ina.fr/[^"]+\.mp4)',
|
||||||
|
webpage, u'video URL')
|
||||||
|
|
||||||
|
video_title = self._search_regex(r'<title><!\[CDATA\[(?P<titre>.*?)]]></title>',
|
||||||
|
webpage, u'title')
|
||||||
|
|
||||||
|
return [{
|
||||||
|
'id': video_id,
|
||||||
|
'url': video_url,
|
||||||
|
'ext': video_extension,
|
||||||
|
'title': video_title,
|
||||||
|
}]
|
Loading…
Reference in New Issue
Block a user