aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/spike.py
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-01-21 20:54:47 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-01-21 20:54:47 +0100
commit8d9453b9e852b585cd7d0228c126d36b682af42f (patch)
treea6d50352227f991811c26d82b2ad4a6ab412ed97 /youtube_dl/extractor/spike.py
parente4f320a4d044b690721016e36972cd547ee787d3 (diff)
downloadyoutube-dl-8d9453b9e852b585cd7d0228c126d36b682af42f.zip
youtube-dl-8d9453b9e852b585cd7d0228c126d36b682af42f.tar.gz
youtube-dl-8d9453b9e852b585cd7d0228c126d36b682af42f.tar.bz2
Add an extractor for spike.com (#2072)
Added a generic _real_extract to MTVServicesInfoExtractor
Diffstat (limited to 'youtube_dl/extractor/spike.py')
-rw-r--r--youtube_dl/extractor/spike.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/youtube_dl/extractor/spike.py b/youtube_dl/extractor/spike.py
new file mode 100644
index 0000000..71a9aaa
--- /dev/null
+++ b/youtube_dl/extractor/spike.py
@@ -0,0 +1,19 @@
+from __future__ import unicode_literals
+
+from .mtv import MTVServicesInfoExtractor
+
+
+class SpikeIE(MTVServicesInfoExtractor):
+ _VALID_URL = r'https?://www\.spike\.com/(video-clips|episodes)/.+'
+ _TEST = {
+ 'url': 'http://www.spike.com/video-clips/lhtu8m/auction-hunters-can-allen-ride-a-hundred-year-old-motorcycle',
+ 'md5': '1a9265f32b0c375793d6c4ce45255256',
+ 'info_dict': {
+ 'id': 'b9c8221a-4e50-479a-b86d-3333323e38ba',
+ 'ext': 'mp4',
+ 'title': 'Can Allen Ride A Hundred Year-Old Motorcycle?',
+ 'description': 'md5:fbed7e82ed5fad493615b3094a9499cb',
+ },
+ }
+
+ _FEED_URL = 'http://www.spike.com/feeds/mrss/'