aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-12-16 16:38:26 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2014-12-16 16:38:26 +0100
commitec05fee43acc49f4aded253e7072683b268a7965 (patch)
tree00147d7d2814076c0481e851551d3479837dc48f
parentb50e3bc67fd864bbb14ed4ccf3f0d29e1ff3e1f0 (diff)
downloadyoutube-dl-ec05fee43acc49f4aded253e7072683b268a7965.tar.xz
[brightcove] Add shorter URL scheme for other extractors
-rw-r--r--youtube_dl/extractor/aljazeera.py9
-rw-r--r--youtube_dl/extractor/brightcove.py2
2 files changed, 6 insertions, 5 deletions
diff --git a/youtube_dl/extractor/aljazeera.py b/youtube_dl/extractor/aljazeera.py
index ace5ec19d..380d429d6 100644
--- a/youtube_dl/extractor/aljazeera.py
+++ b/youtube_dl/extractor/aljazeera.py
@@ -24,9 +24,10 @@ class AlJazeeraIE(InfoExtractor):
return {
'_type': 'url',
- 'url':
- 'http://c.brightcove.com/services/viewer/federated_f9?'
- '&playerKey=AQ~~%2CAAAAmtVJIFk~%2CTVGOQ5ZTwJbeMWnq5d_H4MOM57xfzApc'
- '&%40videoPlayer={0}'.format(brightcove_id),
+ 'url': (
+ 'brightcove:'
+ 'playerKey=AQ~~%2CAAAAmtVJIFk~%2CTVGOQ5ZTwJbeMWnq5d_H4MOM57xfzApc'
+ '&%40videoPlayer={0}'.format(brightcove_id)
+ ),
'ie_key': 'Brightcove',
}
diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py
index 1eca00470..003152c4e 100644
--- a/youtube_dl/extractor/brightcove.py
+++ b/youtube_dl/extractor/brightcove.py
@@ -25,7 +25,7 @@ from ..utils import (
class BrightcoveIE(InfoExtractor):
- _VALID_URL = r'https?://.*brightcove\.com/(services|viewer).*?\?(?P<query>.*)'
+ _VALID_URL = r'(?:https?://.*brightcove\.com/(services|viewer).*?\?|brightcove:)(?P<query>.*)'
_FEDERATED_URL_TEMPLATE = 'http://c.brightcove.com/services/viewer/htmlFederated?%s'
_TESTS = [