diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-11-18 00:46:41 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-11-18 00:46:41 +0600 | 
| commit | 312a3f389b4c788556cfcceec1556580c9a9520f (patch) | |
| tree | d536c0579804576a7758f97875e5d6c5eaccea5a | |
| parent | 609af1ae1ce578b0fdd1dd7ec6e56f1272e107f6 (diff) | |
[pbs] Extend _VALID_URL
| -rw-r--r-- | youtube_dl/extractor/pbs.py | 6 | 
1 files changed, 5 insertions, 1 deletions
diff --git a/youtube_dl/extractor/pbs.py b/youtube_dl/extractor/pbs.py index 8fb9b1849..33d5c1cf7 100644 --- a/youtube_dl/extractor/pbs.py +++ b/youtube_dl/extractor/pbs.py @@ -22,7 +22,7 @@ class PBSIE(InfoExtractor):             # Article with embedded player (or direct video)             (?:www\.)?pbs\.org/(?:[^/]+/){2,5}(?P<presumptive_id>[^/]+?)(?:\.html)?/?(?:$|[?\#]) |             # Player -           video\.pbs\.org/(?:widget/)?partnerplayer/(?P<player_id>[^/]+)/ +           (?:video|player)\.pbs\.org/(?:widget/)?partnerplayer/(?P<player_id>[^/]+)/          )      ''' @@ -170,6 +170,10 @@ class PBSIE(InfoExtractor):              'params': {                  'skip_download': True,  # requires ffmpeg              }, +        }, +        { +            'url': 'http://player.pbs.org/widget/partnerplayer/2365297708/?start=0&end=0&chapterbar=false&endscreen=false&topbar=true', +            'only_matching': True,          }      ]      _ERRORS = {  | 
