aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/d8.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-10-31 21:54:30 +0700
committerSergey M․ <dstftw@gmail.com>2014-10-31 21:54:30 +0700
commit6e1cff9c33e5e35e6d01b5635e3ad08565e5941c (patch)
tree3183230ceff24b4fc41aa7c582d5f9eb34617858 /youtube_dl/extractor/d8.py
parent72975729c89a5b0c73ecb4e5dccca38ed2dfb013 (diff)
downloadyoutube-dl-6e1cff9c33e5e35e6d01b5635e3ad08565e5941c.tar.xz
[canalplus] Improve and merge with d8 extractor
Diffstat (limited to 'youtube_dl/extractor/d8.py')
-rw-r--r--youtube_dl/extractor/d8.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/youtube_dl/extractor/d8.py b/youtube_dl/extractor/d8.py
deleted file mode 100644
index 6b26ff2e3..000000000
--- a/youtube_dl/extractor/d8.py
+++ /dev/null
@@ -1,25 +0,0 @@
-# encoding: utf-8
-from __future__ import unicode_literals
-
-from .canalplus import CanalplusIE
-
-
-class D8IE(CanalplusIE):
- _VALID_URL = r'https?://www\.d8\.tv/.*?/(?P<path>.*)'
- _VIDEO_INFO_TEMPLATE = 'http://service.canal-plus.com/video/rest/getVideosLiees/d8/%s'
- IE_NAME = 'd8.tv'
-
- _TEST = {
- 'url': 'http://www.d8.tv/d8-docs-mags/pid6589-d8-campagne-intime.html',
- 'file': '966289.flv',
- 'info_dict': {
- 'title': 'Campagne intime - Documentaire exceptionnel',
- 'description': 'md5:d2643b799fb190846ae09c61e59a859f',
- 'upload_date': '20131108',
- },
- 'params': {
- # rtmp
- 'skip_download': True,
- },
- 'skip': 'videos get deleted after a while',
- }