diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-12-16 16:38:26 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-12-16 16:38:26 +0100 |
commit | ec05fee43acc49f4aded253e7072683b268a7965 (patch) | |
tree | 00147d7d2814076c0481e851551d3479837dc48f /youtube_dl/extractor/brightcove.py | |
parent | b50e3bc67fd864bbb14ed4ccf3f0d29e1ff3e1f0 (diff) |
[brightcove] Add shorter URL scheme for other extractors
Diffstat (limited to 'youtube_dl/extractor/brightcove.py')
-rw-r--r-- | youtube_dl/extractor/brightcove.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 = [ |