diff options
author | Yen Chi Hsuan <yan12125@gmail.com> | 2017-01-16 00:06:52 +0800 |
---|---|---|
committer | Yen Chi Hsuan <yan12125@gmail.com> | 2017-01-16 00:06:52 +0800 |
commit | 16e2c8f7710bffb462921dbc93adfa6274bd9334 (patch) | |
tree | aa0fc5dc54366fb3e798e70f682731c6c4ab7c33 /youtube_dl/extractor/brightcove.py | |
parent | dcae7b3fdc6e6812e78c8dba96d671ccf0ab068e (diff) |
[brightcove] Recognize another player ID
Closes #11688
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 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 |