diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-09-26 20:07:12 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-09-26 20:07:12 +0600 | 
| commit | 54914380c04ac7b52fa6dc69d49576fb7afe5f27 (patch) | |
| tree | 9677de1bcd15c2163004aee2c8fe099eae2da3f9 | |
| parent | 26ccc68bedb3f35fcbaad0196da0a6d93eef6e89 (diff) | |
[bbc] Add test for programme that fails with iptv-all mediaset
| -rw-r--r-- | youtube_dl/extractor/bbc.py | 15 | 
1 files changed, 15 insertions, 0 deletions
| diff --git a/youtube_dl/extractor/bbc.py b/youtube_dl/extractor/bbc.py index 074b56372..cc2f6fed2 100644 --- a/youtube_dl/extractor/bbc.py +++ b/youtube_dl/extractor/bbc.py @@ -157,6 +157,21 @@ class BBCCoUkIE(InfoExtractor):              },              'skip': 'geolocation',          }, { +            # iptv-all mediaset fails with geolocation however there is no geo restriction +            # for this programme at all +            'url': 'http://www.bbc.co.uk/programmes/b06bp7lf', +            'info_dict': { +                'id': 'b06bp7kf', +                'ext': 'flv', +                'title': "Annie Mac's Friday Night, B.Traits sits in for Annie", +                'description': 'B.Traits sits in for Annie Mac with a Mini-Mix from Disclosure.', +                'duration': 10800, +            }, +            'params': { +                # rtmp download +                'skip_download': True, +            }, +        }, {              'url': 'http://www.bbc.co.uk/iplayer/playlist/p01dvks4',              'only_matching': True,          }, { | 
