diff options
| author | Sergey M․ <dstftw@gmail.com> | 2014-03-15 04:39:53 +0700 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2014-03-15 04:39:53 +0700 | 
| commit | d95e35d659ea0dd2aa1dba3a4ee9925c25505fda (patch) | |
| tree | 12d91c5ed55520d25421c5d59bf658b2f647f565 | |
| parent | 143907304908ee34bfcfe4914cda596d235291f8 (diff) | |
[generic] Add nowvideo test hidden behind percent encoding
| -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 300485c7f..0d02f836e 100644 --- a/youtube_dl/extractor/generic.py +++ b/youtube_dl/extractor/generic.py @@ -145,6 +145,17 @@ class GenericIE(InfoExtractor):                  'description': 'Episode 18: President Barack Obama sits down with Zach Galifianakis for his most memorable interview yet.',              }          }, +        # nowvideo embed hidden behind percent encoding +        { +            'url': 'http://www.waoanime.tv/the-super-dimension-fortress-macross-episode-1/', +            'md5': '2baf4ddd70f697d94b1c18cf796d5107', +            'info_dict': { +                'id': '06e53103ca9aa', +                'ext': 'flv', +                'title': 'Macross Episode 001  Watch Macross Episode 001 onl', +                'description': 'No description', +            }, +        }      ]      def report_download_webpage(self, video_id): | 
