From 82e02ea5fce6bbc595dbfefc8eafce21e2bb53cc Mon Sep 17 00:00:00 2001 From: gam2046 Date: Fri, 18 Dec 2015 14:18:56 +0800 Subject: [PATCH] Update iqiyi.py Fix part of the address can not be resolved. eg:http://www.iqiyi.com/w_19rt6o8t9p.html --- youtube_dl/extractor/iqiyi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/iqiyi.py b/youtube_dl/extractor/iqiyi.py index c3731a110..f0e2e5104 100644 --- a/youtube_dl/extractor/iqiyi.py +++ b/youtube_dl/extractor/iqiyi.py @@ -16,7 +16,7 @@ class IqiyiIE(InfoExtractor): IE_NAME = 'iqiyi' IE_DESC = '爱奇艺' - _VALID_URL = r'http://(?:www\.)iqiyi.com/v_.+?\.html' + _VALID_URL = r'http://(?:www\.)iqiyi.com/._.+?\.html' _TESTS = [{ 'url': 'http://www.iqiyi.com/v_19rrojlavg.html', -- 2.30.2