diff options
Diffstat (limited to 'youtube_dl/extractor/generic.py')
| -rw-r--r-- | youtube_dl/extractor/generic.py | 10 | 
1 files changed, 1 insertions, 9 deletions
| diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py index 6d2efb22e..6df89f814 100644 --- a/youtube_dl/extractor/generic.py +++ b/youtube_dl/extractor/generic.py @@ -276,14 +276,6 @@ class GenericIE(InfoExtractor):                  'description': 'Episode 18: President Barack Obama sits down with Zach Galifianakis for his most memorable interview yet.',              },          }, -        # BBC iPlayer embeds -        { -            'url': 'http://www.bbc.co.uk/blogs/adamcurtis/posts/BUGGER', -            'info_dict': { -                'title': 'BBC - Blogs -  Adam Curtis - BUGGER', -            }, -            'playlist_mincount': 18, -        },          # RUTV embed          {              'url': 'http://www.rg.ru/2014/03/15/reg-dfo/anklav-anons.html', @@ -1663,7 +1655,7 @@ class GenericIE(InfoExtractor):          if not found:              # Broaden the findall a little bit: JWPlayer JS loader              found = filter_video(re.findall( -                r'[^A-Za-z0-9]?file["\']?:\s*["\'](http(?![^\'"]+\.[0-9]+[\'"])[^\'"]+)["\']', webpage)) +                r'[^A-Za-z0-9]?(?:file|video_url)["\']?:\s*["\'](http(?![^\'"]+\.[0-9]+[\'"])[^\'"]+)["\']', webpage))          if not found:              # Flow player              found = filter_video(re.findall(r'''(?xs) | 
