diff options
| author | Sergey M․ <dstftw@gmail.com> | 2017-08-13 01:11:27 +0700 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2017-08-13 01:11:27 +0700 | 
| commit | eb02940cc7dc2233f2d7873c12165245a3c3c14e (patch) | |
| tree | c6d366d84fa2872261645d9c35f1feabf7e64868 | |
| parent | 4ef9152428c4a000cb5fc76732fc579f1f4c1d69 (diff) | |
[generic] Add test for #13895
| -rw-r--r-- | youtube_dl/extractor/generic.py | 15 | 
1 files changed, 15 insertions, 0 deletions
diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py index 8362d9a36..eff5fbfe8 100644 --- a/youtube_dl/extractor/generic.py +++ b/youtube_dl/extractor/generic.py @@ -1786,6 +1786,21 @@ class GenericIE(InfoExtractor):              'playlist_mincount': 5,          },          { +            # Limelight embed (LimelightPlayerUtil.embed) +            'url': 'https://tv5.ca/videos?v=xuu8qowr291ri', +            'info_dict': { +                'id': '95d035dc5c8a401588e9c0e6bd1e9c92', +                'ext': 'mp4', +                'title': '07448641', +                'timestamp': 1499890639, +                'upload_date': '20170712', +            }, +            'params': { +                'skip_download': True, +            }, +            'add_ie': ['LimelightMedia'], +        }, +        {              'url': 'http://kron4.com/2017/04/28/standoff-with-walnut-creek-murder-suspect-ends-with-arrest/',              'info_dict': {                  'id': 'standoff-with-walnut-creek-murder-suspect-ends-with-arrest',  | 
