diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2016-04-15 22:39:18 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2016-04-15 22:39:18 +0800 |
commit | 7e176effb24ea2d654e44a8bedc23248d3291bbd (patch) | |
tree | ffc44bf75d71c4d322ea25e5085988f1d8f6d86b /youtube_dl/extractor/iqiyi.py | |
parent | 4a252cc2d2c84b61f611bdb64b59f049ff44c955 (diff) |
[iqiyi] Also suuport pps.tv URLs
PPS is acquired by Baidu and merged with iQiyi in 2013 [1]. Now they
have the same page layouts.
[1] http://www.chinanews.com/it/2013/05-07/4792526.shtml
Diffstat (limited to 'youtube_dl/extractor/iqiyi.py')
-rw-r--r-- | youtube_dl/extractor/iqiyi.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/iqiyi.py b/youtube_dl/extractor/iqiyi.py index 88570f261..ea8fbb329 100644 --- a/youtube_dl/extractor/iqiyi.py +++ b/youtube_dl/extractor/iqiyi.py @@ -165,7 +165,7 @@ class IqiyiIE(InfoExtractor): IE_NAME = 'iqiyi' IE_DESC = '爱奇艺' - _VALID_URL = r'https?://(?:[^.]+\.)?iqiyi\.com/.+\.html' + _VALID_URL = r'https?://(?:(?:[^.]+\.)?iqiyi\.com|www\.pps\.tv)/.+\.html' _NETRC_MACHINE = 'iqiyi' @@ -273,6 +273,9 @@ class IqiyiIE(InfoExtractor): 'title': '灌篮高手 国语版', }, 'playlist_count': 101, + }, { + 'url': 'http://www.pps.tv/w_19rrbav0ph.html', + 'only_matching': True, }] _FORMATS_MAP = [ |