about summary refs log tree commit diff
path: root/youtube_dl/extractor/brightcove.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2017-01-16 00:06:52 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2017-01-16 00:06:52 +0800
commit16e2c8f7710bffb462921dbc93adfa6274bd9334 (patch)
treeaa0fc5dc54366fb3e798e70f682731c6c4ab7c33 /youtube_dl/extractor/brightcove.py
parentdcae7b3fdc6e6812e78c8dba96d671ccf0ab068e (diff)
downloadyoutube-dl-16e2c8f7710bffb462921dbc93adfa6274bd9334.tar.gz
youtube-dl-16e2c8f7710bffb462921dbc93adfa6274bd9334.tar.xz
youtube-dl-16e2c8f7710bffb462921dbc93adfa6274bd9334.zip
[brightcove] Recognize another player ID
Closes #11688
Diffstat (limited to 'youtube_dl/extractor/brightcove.py')
-rw-r--r--youtube_dl/extractor/brightcove.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py
index 2e56d1df9..5c6e99da1 100644
--- a/youtube_dl/extractor/brightcove.py
+++ b/youtube_dl/extractor/brightcove.py
@@ -179,7 +179,7 @@ class BrightcoveLegacyIE(InfoExtractor):
 
         params = {}
 
-        playerID = find_param('playerID')
+        playerID = find_param('playerID') or find_param('playerId')
         if playerID is None:
             raise ExtractorError('Cannot find player ID')
         params['playerID'] = playerID