diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-11-07 00:42:30 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-11-07 00:42:30 +0600 |
commit | 8b6d9406db1d3361b006016e6aace54b05cb6fea (patch) | |
tree | 45c7c6382e8bcd4eaf69b576a9371073c55d41da /youtube_dl | |
parent | 686f98816ecbbcb224d1336682688b05cdb051a6 (diff) |
[pbs] Add test for flp frontline embeds
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/pbs.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/youtube_dl/extractor/pbs.py b/youtube_dl/extractor/pbs.py index 3169e9c3f..a690f9c29 100644 --- a/youtube_dl/extractor/pbs.py +++ b/youtube_dl/extractor/pbs.py @@ -154,6 +154,22 @@ class PBSIE(InfoExtractor): 'params': { 'skip_download': True, # requires ffmpeg }, + }, + { + # Frontline video embedded via flp2012.js + 'url': 'http://www.pbs.org/wgbh/pages/frontline/the-atomic-artists', + 'info_dict': { + 'id': '2070868960', + 'display_id': 'the-atomic-artists', + 'ext': 'mp4', + 'title': 'FRONTLINE - The Atomic Artists', + 'description': 'md5:f5bfbefadf421e8bb8647602011caf8e', + 'duration': 723, + 'thumbnail': 're:^https?://.*\.jpg$', + }, + 'params': { + 'skip_download': True, # requires ffmpeg + }, } ] _ERRORS = { |