mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 17:23:48 +01:00
[nextmedia] Add support for NextTV (壹電視)
This commit is contained in:
parent
0c1c6f4b9f
commit
bc35ed3fb6
@ -1,3 +1,9 @@
|
|||||||
|
version <unreleased>
|
||||||
|
|
||||||
|
Extractors
|
||||||
|
+ [nextmedia] Add support for NextTV (壹電視)
|
||||||
|
|
||||||
|
|
||||||
version 2017.01.22
|
version 2017.01.22
|
||||||
|
|
||||||
Extractors
|
Extractors
|
||||||
|
@ -598,6 +598,7 @@
|
|||||||
NextMediaIE,
|
NextMediaIE,
|
||||||
NextMediaActionNewsIE,
|
NextMediaActionNewsIE,
|
||||||
AppleDailyIE,
|
AppleDailyIE,
|
||||||
|
NextTVIE,
|
||||||
)
|
)
|
||||||
from .nfb import NFBIE
|
from .nfb import NFBIE
|
||||||
from .nfl import NFLIE
|
from .nfl import NFLIE
|
||||||
|
@ -3,7 +3,14 @@
|
|||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
from ..compat import compat_urlparse
|
from ..compat import compat_urlparse
|
||||||
from ..utils import parse_iso8601
|
from ..utils import (
|
||||||
|
clean_html,
|
||||||
|
get_element_by_class,
|
||||||
|
int_or_none,
|
||||||
|
parse_iso8601,
|
||||||
|
remove_start,
|
||||||
|
unified_timestamp,
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class NextMediaIE(InfoExtractor):
|
class NextMediaIE(InfoExtractor):
|
||||||
@ -184,3 +191,48 @@ def _fetch_timestamp(self, page):
|
|||||||
|
|
||||||
def _fetch_description(self, page):
|
def _fetch_description(self, page):
|
||||||
return self._html_search_meta('description', page, 'news description')
|
return self._html_search_meta('description', page, 'news description')
|
||||||
|
|
||||||
|
|
||||||
|
class NextTVIE(InfoExtractor):
|
||||||
|
IE_DESC = '壹電視'
|
||||||
|
_VALID_URL = r'https?://(?:www\.)?nexttv\.com\.tw/(?:[^/]+/)+(?P<id>\d+)'
|
||||||
|
|
||||||
|
_TEST = {
|
||||||
|
'url': 'http://www.nexttv.com.tw/news/realtime/politics/11779671',
|
||||||
|
'info_dict': {
|
||||||
|
'id': '11779671',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'title': '「超收稅」近4千億! 藍議員籲發消費券',
|
||||||
|
'thumbnail': r're:^https?://.*\.jpg$',
|
||||||
|
'timestamp': 1484825400,
|
||||||
|
'upload_date': '20170119',
|
||||||
|
'view_count': int,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
def _real_extract(self, url):
|
||||||
|
video_id = self._match_id(url)
|
||||||
|
|
||||||
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
|
||||||
|
title = self._html_search_regex(
|
||||||
|
r'<h1[^>]*>([^<]+)</h1>', webpage, 'title')
|
||||||
|
|
||||||
|
data = self._hidden_inputs(webpage)
|
||||||
|
|
||||||
|
video_url = data['ntt-vod-src-detailview']
|
||||||
|
|
||||||
|
date_str = get_element_by_class('date', webpage)
|
||||||
|
timestamp = unified_timestamp(date_str + '+0800') if date_str else None
|
||||||
|
|
||||||
|
view_count = int_or_none(remove_start(
|
||||||
|
clean_html(get_element_by_class('click', webpage)), '點閱:'))
|
||||||
|
|
||||||
|
return {
|
||||||
|
'id': video_id,
|
||||||
|
'title': title,
|
||||||
|
'url': video_url,
|
||||||
|
'thumbnail': data.get('ntt-vod-img-src'),
|
||||||
|
'timestamp': timestamp,
|
||||||
|
'view_count': view_count,
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user