summary refs log tree commit diff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2017-10-17 09:22:43 +0000
committerRemita Amine <remitamine@gmail.com>2017-10-17 09:23:11 +0000
commit6b9cbd023f1206f90e60cbed4497e6b107438542 (patch)
treeb5b21b8b700a0cc2ef525ada8ccde61e1d25a9f1
parentc233003afe34ba9db7861bf44d5097ade870c739 (diff)
downloadyoutube-dl-6b9cbd023f1206f90e60cbed4497e6b107438542.tar.gz
youtube-dl-6b9cbd023f1206f90e60cbed4497e6b107438542.tar.xz
youtube-dl-6b9cbd023f1206f90e60cbed4497e6b107438542.zip
[pbs] restrict direct video url regex(fixes #14519)
-rw-r--r--youtube_dl/extractor/pbs.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/pbs.py b/youtube_dl/extractor/pbs.py
index 8889e4a1a..b51dcbe10 100644
--- a/youtube_dl/extractor/pbs.py
+++ b/youtube_dl/extractor/pbs.py
@@ -187,7 +187,7 @@ class PBSIE(InfoExtractor):
     _VALID_URL = r'''(?x)https?://
         (?:
            # Direct video URL
-           (?:%s)/(?:viralplayer|video)/(?P<id>[0-9]+)/? |
+           (?:%s)/(?:(?:vir|port)alplayer|video)/(?P<id>[0-9]+)(?:[?/]|$) |
            # Article with embedded player (or direct video)
            (?:www\.)?pbs\.org/(?:[^/]+/){1,5}(?P<presumptive_id>[^/]+?)(?:\.html)?/?(?:$|[?\#]) |
            # Player
@@ -367,6 +367,10 @@ class PBSIE(InfoExtractor):
         {
             'url': 'http://watch.knpb.org/video/2365616055/',
             'only_matching': True,
+        },
+        {
+            'url': 'https://player.pbs.org/portalplayer/3004638221/?uid=',
+            'only_matching': True,
         }
     ]
     _ERRORS = {