diff options
author | remitamine <remitamine@gmail.com> | 2016-03-15 22:57:59 +0100 |
---|---|---|
committer | remitamine <remitamine@gmail.com> | 2016-03-15 23:10:31 +0100 |
commit | 2cab48704ced0d703f2b6de8575dc06e83207462 (patch) | |
tree | 9923c6032673f8881de1a40855af3b2bf645ff40 /youtube_dl/extractor/brightcove.py | |
parent | 64d4f31d78d9555d7f79b8bebeabb7535a842090 (diff) |
[thestar] Add new extractor(closes #5955)
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 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') |