aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/brightcove.py
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2016-03-15 22:57:59 +0100
committerremitamine <remitamine@gmail.com>2016-03-15 23:10:31 +0100
commit2cab48704ced0d703f2b6de8575dc06e83207462 (patch)
tree9923c6032673f8881de1a40855af3b2bf645ff40 /youtube_dl/extractor/brightcove.py
parent64d4f31d78d9555d7f79b8bebeabb7535a842090 (diff)
downloadyoutube-dl-2cab48704ced0d703f2b6de8575dc06e83207462.tar.xz
[thestar] Add new extractor(closes #5955)
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 b182edb26..f56b642ab 100644
--- a/youtube_dl/extractor/brightcove.py
+++ b/youtube_dl/extractor/brightcove.py
@@ -157,7 +157,7 @@ class BrightcoveLegacyIE(InfoExtractor):
if playerKey is not None:
params['playerKey'] = playerKey
# The three fields hold the id of the video
- videoPlayer = find_param('@videoPlayer') or find_param('videoId') or find_param('videoID')
+ videoPlayer = find_param('@videoPlayer') or find_param('videoId') or find_param('videoID') or find_param('@videoList')
if videoPlayer is not None:
params['@videoPlayer'] = videoPlayer
linkBase = find_param('linkBaseURL')