aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/nextmedia.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-10-09 18:42:15 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-10-09 18:42:15 +0800
commitb0082629a9cf65796d503786c45c144d992010e7 (patch)
tree87df4abb989cca81e5f22a06201dd516b48e4c3c /youtube_dl/extractor/nextmedia.py
parent8204c733523675d505a8c726ec65b65e15485ce1 (diff)
downloadyoutube-dl-b0082629a9cf65796d503786c45c144d992010e7.tar.xz
[nextmedia] Support action news (動新聞) on Apple Daily
Diffstat (limited to 'youtube_dl/extractor/nextmedia.py')
-rw-r--r--youtube_dl/extractor/nextmedia.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/nextmedia.py b/youtube_dl/extractor/nextmedia.py
index a08e48c4b..dee9056d3 100644
--- a/youtube_dl/extractor/nextmedia.py
+++ b/youtube_dl/extractor/nextmedia.py
@@ -93,7 +93,7 @@ class NextMediaActionNewsIE(NextMediaIE):
class AppleDailyIE(NextMediaIE):
IE_DESC = '臺灣蘋果日報'
- _VALID_URL = r'https?://(www|ent)\.appledaily\.com\.tw/(?:animation|appledaily|enews|realtimenews)/[^/]+/[^/]+/(?P<date>\d+)/(?P<id>\d+)(/.*)?'
+ _VALID_URL = r'https?://(www|ent)\.appledaily\.com\.tw/(?:animation|appledaily|enews|realtimenews|actionnews)/[^/]+/[^/]+/(?P<date>\d+)/(?P<id>\d+)(/.*)?'
_TESTS = [{
'url': 'http://ent.appledaily.com.tw/enews/article/entertainment/20150128/36354694',
'md5': 'a843ab23d150977cc55ef94f1e2c1e4d',
@@ -154,6 +154,9 @@ class AppleDailyIE(NextMediaIE):
'description': 'md5:7b859991a6a4fedbdf3dd3b66545c748',
'upload_date': '20140417',
},
+ }, {
+ 'url': 'http://www.appledaily.com.tw/actionnews/appledaily/7/20161003/960588/',
+ 'only_matching': True,
}]
_URL_PATTERN = r'\{url: \'(.+)\'\}'