diff options
| author | Remita Amine <remitamine@gmail.com> | 2016-09-04 14:18:41 +0100 | 
|---|---|---|
| committer | Remita Amine <remitamine@gmail.com> | 2016-09-04 14:24:41 +0100 | 
| commit | 433af6ad3002424ecb316e23946722d54010dbe1 (patch) | |
| tree | 5fd318e07ac4da63bb94034b73d8bdb6d499c039 | |
| parent | feaa5ad787cdc28e4b6979f1c7798134b1bee723 (diff) | |
[theplatform] fix player regex(closes #10546)
| -rw-r--r-- | youtube_dl/extractor/theplatform.py | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/theplatform.py b/youtube_dl/extractor/theplatform.py index 23067e8c6..6febf805b 100644 --- a/youtube_dl/extractor/theplatform.py +++ b/youtube_dl/extractor/theplatform.py @@ -96,7 +96,7 @@ class ThePlatformBaseIE(OnceIE):  class ThePlatformIE(ThePlatformBaseIE, AdobePassIE):      _VALID_URL = r'''(?x)          (?:https?://(?:link|player)\.theplatform\.com/[sp]/(?P<provider_id>[^/]+)/ -           (?:(?:(?:[^/]+/)+select/)?(?P<media>media/(?:guid/\d+/)?)|(?P<config>(?:[^/\?]+/(?:swf|config)|onsite)/select/))? +           (?:(?:(?:[^/]+/)+select/)?(?P<media>media/(?:guid/\d+/)?)?|(?P<config>(?:[^/\?]+/(?:swf|config)|onsite)/select/))?           |theplatform:)(?P<id>[^/\?&]+)'''      _TESTS = [{ @@ -116,6 +116,7 @@ class ThePlatformIE(ThePlatformBaseIE, AdobePassIE):              # rtmp download              'skip_download': True,          }, +        'skip': '404 Not Found',      }, {          # from http://www.cnet.com/videos/tesla-model-s-a-second-step-towards-a-cleaner-motoring-future/          'url': 'http://link.theplatform.com/s/kYEXFC/22d_qsQ6MIRT',  | 
