diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2014-02-08 18:37:33 +0100 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2014-02-08 18:37:33 +0100 | 
| commit | bf5f6100998dc24fdf866af93ea2bb2433bfacdb (patch) | |
| tree | 4b4c97912e948600c94ef82728b6adaa3e9a06de /youtube_dl/extractor/pbs.py | |
| parent | b3fa3917e228eecefc9057b0c5fb784ca5252369 (diff) | |
[pbs] Add support for viralplayer links (Fixes #2350)
Diffstat (limited to 'youtube_dl/extractor/pbs.py')
| -rw-r--r-- | youtube_dl/extractor/pbs.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/youtube_dl/extractor/pbs.py b/youtube_dl/extractor/pbs.py index 8d847e7fe..e7e0042fb 100644 --- a/youtube_dl/extractor/pbs.py +++ b/youtube_dl/extractor/pbs.py @@ -9,7 +9,7 @@ class PBSIE(InfoExtractor):      _VALID_URL = r'''(?x)https?://          (?:              # Direct video URL -            video\.pbs\.org/video/(?P<id>[0-9]+)/? | +            video\.pbs\.org/(?:viralplayer|video)/(?P<id>[0-9]+)/? |              # Article with embedded player             (?:www\.)?pbs\.org/(?:[^/]+/){2,5}(?P<presumptive_id>[^/]+)/?(?:$|[?\#]) |             # Player | 
