diff options
| -rw-r--r-- | youtube_dl/extractor/generic.py | 11 | 
1 files changed, 11 insertions, 0 deletions
diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py index a71d6bac0..cb6308d29 100644 --- a/youtube_dl/extractor/generic.py +++ b/youtube_dl/extractor/generic.py @@ -1542,6 +1542,17 @@ class GenericIE(InfoExtractor):              'url': 'http://www.golfchannel.com/topics/shows/golftalkcentral.htm',              'only_matching': True,          }, +        { +            # Senate ISVP iframe https +            'url': 'https://www.hsgac.senate.gov/hearings/canadas-fast-track-refugee-plan-unanswered-questions-and-implications-for-us-national-security', +            'md5': 'fb8c70b0b515e5037981a2492099aab8', +            'info_dict': { +                'id': 'govtaff020316', +                'ext': 'mp4', +                'title': 'Integrated Senate Video Player', +            }, +            'add_ie': [SenateISVPIE.ie_key()], +        },          # {          #     # TODO: find another test          #     # http://schema.org/VideoObject  | 
