diff options
author | Remita Amine <remitamine@gmail.com> | 2016-08-06 12:08:14 +0100 |
---|---|---|
committer | Remita Amine <remitamine@gmail.com> | 2016-08-06 12:08:14 +0100 |
commit | 089a40955cdcdce1d8ea89b1402bde4c88c75546 (patch) | |
tree | 7b98bb41fcd25a4465dd2052d403995d5d178b1b | |
parent | d73ebac100c9f91acb002c4844ba67b73616322a (diff) |
[pokemon] improve _VALID_URL
-rw-r--r-- | youtube_dl/extractor/pokemon.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/youtube_dl/extractor/pokemon.py b/youtube_dl/extractor/pokemon.py index ce27f33e1..2d87e7e70 100644 --- a/youtube_dl/extractor/pokemon.py +++ b/youtube_dl/extractor/pokemon.py @@ -11,7 +11,7 @@ from ..utils import ( class PokemonIE(InfoExtractor): - _VALID_URL = r'https?://(?:www\.)?pokemon\.com/[a-z]{2}(?:.*?play=(?P<id>[a-z0-9]{32})|/pokemon-episodes/(?P<display_id>[^/?#]+))' + _VALID_URL = r'https?://(?:www\.)?pokemon\.com/[a-z]{2}(?:.*?play=(?P<id>[a-z0-9]{32})|/[^/]+/\d+_\d+-(?P<display_id>[^/?#]+))' _TESTS = [{ 'url': 'http://www.pokemon.com/us/pokemon-episodes/19_01-from-a-to-z/?play=true', 'md5': '9fb209ae3a569aac25de0f5afc4ee08f', @@ -27,6 +27,12 @@ class PokemonIE(InfoExtractor): }, { 'url': 'http://www.pokemon.com/uk/pokemon-episodes/?play=2e8b5c761f1d4a9286165d7748c1ece2', 'only_matching': True, + }, { + 'url': 'http://www.pokemon.com/fr/episodes-pokemon/18_09-un-hiver-inattendu/', + 'only_matching': True, + }, { + 'url': 'http://www.pokemon.com/de/pokemon-folgen/01_20-bye-bye-smettbo/', + 'only_matching': True, }] def _real_extract(self, url): |