about summary refs log tree commit diff
path: root/youtube_dl/extractor/appletrailers.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-02-20 15:54:00 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-02-20 15:54:00 +0800
commit958759f44b3e7c37509394568d9764e2794f713a (patch)
treed1a41e98f890b12f3235ccc710e55dfbcfc7be90 /youtube_dl/extractor/appletrailers.py
parent86bf29050e29d14dad894ee4f7ca68a05ebd29bc (diff)
downloadyoutube-dl-958759f44b3e7c37509394568d9764e2794f713a.tar.gz
youtube-dl-958759f44b3e7c37509394568d9764e2794f713a.tar.xz
youtube-dl-958759f44b3e7c37509394568d9764e2794f713a.zip
[appletrailers] Extend _VALID_URL (#8524)
Diffstat (limited to 'youtube_dl/extractor/appletrailers.py')
-rw-r--r--youtube_dl/extractor/appletrailers.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/appletrailers.py b/youtube_dl/extractor/appletrailers.py
index 62ed0c918..be40f85b4 100644
--- a/youtube_dl/extractor/appletrailers.py
+++ b/youtube_dl/extractor/appletrailers.py
@@ -12,7 +12,7 @@ from ..utils import (
 
 class AppleTrailersIE(InfoExtractor):
     IE_NAME = 'appletrailers'
-    _VALID_URL = r'https?://(?:www\.)?trailers\.apple\.com/(?:trailers|ca)/(?P<company>[^/]+)/(?P<movie>[^/]+)'
+    _VALID_URL = r'https?://(?:www\.|movie)?trailers\.apple\.com/(?:trailers|ca)/(?P<company>[^/]+)/(?P<movie>[^/]+)'
     _TESTS = [{
         'url': 'http://trailers.apple.com/trailers/wb/manofsteel/',
         'info_dict': {
@@ -73,6 +73,9 @@ class AppleTrailersIE(InfoExtractor):
     }, {
         'url': 'http://trailers.apple.com/ca/metropole/autrui/',
         'only_matching': True,
+    }, {
+        'url': 'http://movietrailers.apple.com/trailers/focus_features/kuboandthetwostrings/',
+        'only_matching': True,
     }]
 
     _JSON_RE = r'iTunes.playURL\((.*?)\);'