[extractor/generic] Add a test for m3u playlist served without proper Content-Type
authorSergey M․ <dstftw@gmail.com>
Fri, 18 Mar 2016 16:49:11 +0000 (22:49 +0600)
committerSergey M․ <dstftw@gmail.com>
Fri, 18 Mar 2016 16:49:11 +0000 (22:49 +0600)
youtube_dl/extractor/generic.py

index 24d43a247b6d67ad10c5ba81db46630ff25ecdfb..f28a65d9be347eebc20dde60bb1bb07a1ae7fcf0 100644 (file)
@@ -253,6 +253,21 @@ class GenericIE(InfoExtractor):
                 'skip_download': True,
             }
         },
+        # m3u8 served with Content-Type: text/plain
+        {
+            'url': 'http://www.nacentapps.com/m3u8/index.m3u8',
+            'info_dict': {
+                'id': 'index',
+                'ext': 'mp4',
+                'title': 'index',
+                'upload_date': '20140720',
+                'formats': 'mincount:11',
+            },
+            'params': {
+                # m3u8 downloads
+                'skip_download': True,
+            }
+        },
         # google redirect
         {
             'url': 'http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&ved=0CCUQtwIwAA&url=http%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DcmQHVoWB5FY&ei=F-sNU-LLCaXk4QT52ICQBQ&usg=AFQjCNEw4hL29zgOohLXvpJ-Bdh2bils1Q&bvm=bv.61965928,d.bGE',