summary refs log tree commit diff
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-07-26 13:13:14 +0800
committerYen Chi Hsuan <yan12125@gmail.com>2016-07-26 13:13:14 +0800
commitc74299a72c7d003f95d700b80a69469d567fce05 (patch)
tree4e4f0faefdae610692b8cc666becb194dc4b7fdf
parent10a1bb3a78453a48f5006179ccb7c6998579dde7 (diff)
downloadyoutube-dl-c74299a72c7d003f95d700b80a69469d567fce05.tar.gz
youtube-dl-c74299a72c7d003f95d700b80a69469d567fce05.tar.xz
youtube-dl-c74299a72c7d003f95d700b80a69469d567fce05.zip
[cmt] Detect unavailable videos and update _TESTS
-rw-r--r--youtube_dl/extractor/cmt.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/youtube_dl/extractor/cmt.py b/youtube_dl/extractor/cmt.py
index f1311b14f..f24568dcc 100644
--- a/youtube_dl/extractor/cmt.py
+++ b/youtube_dl/extractor/cmt.py
@@ -1,5 +1,7 @@
 from __future__ import unicode_literals
+
 from .mtv import MTVIE
+from ..utils import ExtractorError
 
 
 class CMTIE(MTVIE):
@@ -16,7 +18,27 @@ class CMTIE(MTVIE):
             'title': 'Garth Brooks - "The Call (featuring Trisha Yearwood)"',
             'description': 'Blame It All On My Roots',
         },
+        'skip': 'Video not available',
+    }, {
+        'url': 'http://www.cmt.com/videos/misc/1504699/still-the-king-ep-109-in-3-minutes.jhtml#id=1739908',
+        'md5': 'e61a801ca4a183a466c08bd98dccbb1c',
+        'info_dict': {
+            'id': '1504699',
+            'ext': 'mp4',
+            'title': 'Still The King Ep. 109 in 3 Minutes',
+            'description': 'Relive or catch up with Still The King by watching this recap of season 1, episode 9. New episodes Sundays 9/8c.',
+            'timestamp': 1469421000.0,
+            'upload_date': '20160725',
+        },
     }, {
         'url': 'http://www.cmt.com/shows/party-down-south/party-down-south-ep-407-gone-girl/1738172/playlist/#id=1738172',
         'only_matching': True,
     }]
+
+    @classmethod
+    def _transform_rtmp_url(cls, rtmp_video_url):
+        if 'error_not_available.swf' in rtmp_video_url:
+            raise ExtractorError(
+                '%s said: video is not available' % cls.IE_NAME, expected=True)
+
+        return super(CMTIE, cls)._transform_rtmp_url(rtmp_video_url)