mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-10-30 21:20:34 +00:00
116 lines
4.1 KiB
Python
116 lines
4.1 KiB
Python
import re
|
|
|
|
from .common import InfoExtractor
|
|
from ..utils import ExtractorError
|
|
|
|
|
|
class EpiconIE(InfoExtractor):
|
|
_VALID_URL = r'https?://(?:www\.)?epicon\.in/(?:documentaries|movies|tv-shows/[^/?#]+/[^/?#]+)/(?P<id>[^/?#]+)'
|
|
_TESTS = [{
|
|
'url': 'https://www.epicon.in/documentaries/air-battle-of-srinagar',
|
|
'info_dict': {
|
|
'id': 'air-battle-of-srinagar',
|
|
'ext': 'mp4',
|
|
'title': 'Air Battle of Srinagar',
|
|
'description': 'md5:c4de2013af9bc05ae4392e4115d518d7',
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
|
}
|
|
}, {
|
|
'url': 'https://www.epicon.in/movies/krit',
|
|
'info_dict': {
|
|
'id': 'krit',
|
|
'ext': 'mp4',
|
|
'title': 'Krit',
|
|
'description': 'md5:c12b35dad915d48ccff7f013c79bab4a',
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
|
}
|
|
}, {
|
|
'url': 'https://www.epicon.in/tv-shows/paapnaashini-ganga/season-1/vardaan',
|
|
'info_dict': {
|
|
'id': 'vardaan',
|
|
'ext': 'mp4',
|
|
'title': 'Paapnaashini Ganga - Season 1 - Ep 1 - VARDAAN',
|
|
'description': 'md5:f517058c3d0402398eefa6242f4dd6ae',
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
|
}
|
|
}, {
|
|
'url': 'https://www.epicon.in/movies/jayadev',
|
|
'info_dict': {
|
|
'id': 'jayadev',
|
|
'ext': 'mp4',
|
|
'title': 'Jayadev',
|
|
'description': 'md5:09e349eecd8e585a3b6466904f19df6c',
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
|
}
|
|
}]
|
|
|
|
def _real_extract(self, url):
|
|
id = self._match_id(url)
|
|
webpage = self._download_webpage(url, id)
|
|
cid = self._search_regex(r'class=\"mylist-icon\ iconclick\"\ id=\"(\d+)', webpage, 'cid')
|
|
headers = {'content-type': 'application/x-www-form-urlencoded; charset=UTF-8'}
|
|
data = f'cid={cid}&action=st&type=video'.encode()
|
|
data_json = self._parse_json(self._download_json('https://www.epicon.in/ajaxplayer/', id, headers=headers, data=data), id)
|
|
|
|
if not data_json['success']:
|
|
raise ExtractorError(data_json['message'], expected=True)
|
|
|
|
title = self._search_regex(r'setplaytitle=\"([^\"]+)', webpage, 'title')
|
|
description = self._og_search_description(webpage) or None
|
|
thumbnail = self._og_search_thumbnail(webpage) or None
|
|
formats = self._extract_m3u8_formats(data_json['url']['video_url'], id)
|
|
|
|
subtitles = {}
|
|
for subtitle in data_json.get('subtitles', []):
|
|
sub_url = subtitle.get('file')
|
|
if not sub_url:
|
|
continue
|
|
subtitles.setdefault(subtitle.get('lang', 'English'), []).append({
|
|
'url': self._proto_relative_url(sub_url),
|
|
})
|
|
|
|
return {
|
|
'id': id,
|
|
'formats': formats,
|
|
'title': title,
|
|
'description': description,
|
|
'thumbnail': thumbnail,
|
|
'subtitles': subtitles,
|
|
}
|
|
|
|
|
|
class EpiconSeriesIE(InfoExtractor):
|
|
_VALID_URL = r'(?!.*season)https?://(?:www\.)?epicon\.in/tv-shows/(?P<id>[^/?#]+)'
|
|
_TESTS = [{
|
|
'url': 'https://www.epicon.in/tv-shows/1-of-something',
|
|
'playlist_mincount': 5,
|
|
'info_dict': {
|
|
'id': '1-of-something',
|
|
},
|
|
}, {
|
|
'url': 'https://www.epicon.in/tv-shows/eco-india-english',
|
|
'playlist_mincount': 76,
|
|
'info_dict': {
|
|
'id': 'eco-india-english',
|
|
},
|
|
}, {
|
|
'url': 'https://www.epicon.in/tv-shows/s/',
|
|
'playlist_mincount': 25,
|
|
'info_dict': {
|
|
'id': 's',
|
|
},
|
|
}, {
|
|
'url': 'https://www.epicon.in/tv-shows/ekaant',
|
|
'playlist_mincount': 38,
|
|
'info_dict': {
|
|
'id': 'ekaant',
|
|
},
|
|
}]
|
|
|
|
def _real_extract(self, url):
|
|
id = self._match_id(url)
|
|
webpage = self._download_webpage(url, id)
|
|
episodes = re.findall(r'ct-tray-url=\"(tv-shows/%s/[^\"]+)' % id, webpage)
|
|
entries = [self.url_result('https://www.epicon.in/%s' % episode, ie=EpiconIE.ie_key()) for episode in episodes]
|
|
return self.playlist_result(entries, playlist_id=id)
|