diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-10-04 21:37:49 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-10-04 21:37:49 +0600 | 
| commit | 90ab741e909c949039e31805da04f5e546a1a8c1 (patch) | |
| tree | 3789fafe7fc5d2e01bd4e2ffc1b19f002a889a03 | |
| parent | 96229998c29705c8ee4230915ec7ff050bcfecf8 (diff) | |
[pbs] Add test for #7059
| -rw-r--r-- | youtube_dl/extractor/pbs.py | 18 | 
1 files changed, 18 insertions, 0 deletions
diff --git a/youtube_dl/extractor/pbs.py b/youtube_dl/extractor/pbs.py index 66b3dda47..6923c6094 100644 --- a/youtube_dl/extractor/pbs.py +++ b/youtube_dl/extractor/pbs.py @@ -134,6 +134,24 @@ class PBSIE(InfoExtractor):              'params': {                  'skip_download': True,  # requires ffmpeg              }, +        }, +        { +            # Video embedded in iframe containing angle brackets as attribute's value (e.g. +            # "<iframe style='position: absolute;<br />\ntop: 0; left: 0;' ...", see +            # https://github.com/rg3/youtube-dl/issues/7059) +            'url': 'http://www.pbs.org/food/features/a-chefs-life-season-3-episode-5-prickly-business/', +            'info_dict': { +                'id': '2365546844', +                'display_id': 'a-chefs-life-season-3-episode-5-prickly-business', +                'ext': 'mp4', +                'title': "A Chef's Life - Season 3, Ep. 5: Prickly Business", +                'description': 'md5:61db2ddf27c9912f09c241014b118ed1', +                'duration': 1480, +                'thumbnail': 're:^https?://.*\.jpg$', +            }, +            'params': { +                'skip_download': True,  # requires ffmpeg +            },          }      ]  | 
