diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-12-18 22:22:41 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-12-18 22:22:41 +0600 | 
| commit | 5b72fda140488685be55215d584f764c39577b02 (patch) | |
| tree | 641700ddd14fbb83f86537f6c328a44442eba109 | |
| parent | f81ccbb3df205c612275f8881ddf21115eb590b4 (diff) | |
[brightcove:new] Clarify ref: prefix
| -rw-r--r-- | youtube_dl/extractor/brightcove.py | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/youtube_dl/extractor/brightcove.py b/youtube_dl/extractor/brightcove.py index b0536ddbd..4e983fa10 100644 --- a/youtube_dl/extractor/brightcove.py +++ b/youtube_dl/extractor/brightcove.py @@ -400,6 +400,7 @@ class BrightcoveNewIE(InfoExtractor):          # 1. http://docs.brightcove.com/en/video-cloud/brightcove-player/guides/publish-video.html#setvideoiniframe          # 2. http://docs.brightcove.com/en/video-cloud/brightcove-player/guides/publish-video.html#setvideousingjavascript          # 3. http://docs.brightcove.com/en/video-cloud/brightcove-player/guides/embed-in-page.html +        # 4. https://support.brightcove.com/en/video-cloud/docs/dynamically-assigning-videos-player          entries = [] @@ -412,6 +413,7 @@ class BrightcoveNewIE(InfoExtractor):          for video_id, account_id, player_id, embed in re.findall(                  # According to examples from [3] it's unclear whether video id                  # may be optional and what to do when it is +                # According to [4] data-video-id may be prefixed with ref:                  r'''(?sx)                      <video[^>]+                          data-video-id=["\']((?:ref:)?\d+)["\'][^>]*>.*? | 
