Browse Source

[iqiyi] Make _VALID_URL more accurate

v_* urls are individual videos, while a_* urls are playlists, which are
not supported yet.
totalwebcasting
Yen Chi Hsuan 9 years ago
parent
commit
865ab62f43
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/iqiyi.py

+ 1
- 1
youtube_dl/extractor/iqiyi.py View File

@ -17,7 +17,7 @@ from ..utils import ExtractorError
class IqiyiIE(InfoExtractor):
IE_NAME = 'iqiyi'
_VALID_URL = r'http://(?:www\.)iqiyi.com/.+?\.html'
_VALID_URL = r'http://(?:www\.)iqiyi.com/v_.+?\.html'
_TESTS = [{
'url': 'http://www.iqiyi.com/v_19rrojlavg.html',


Loading…
Cancel
Save