X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fdctp.py;h=9099f5046a14ad7c769a6da50d813076f8b9231e;hb=5886b38d73c54239c85c3e0d8e7c1585d1bbb7da;hp=dbedafa7d4ea690a8d724c30507c3ce9200463cb;hpb=6ebb0dca9f40ecf9fb82882c097f42f497c70cda;p=youtube-dl diff --git a/youtube_dl/extractor/dctp.py b/youtube_dl/extractor/dctp.py index dbedafa7d..9099f5046 100644 --- a/youtube_dl/extractor/dctp.py +++ b/youtube_dl/extractor/dctp.py @@ -6,15 +6,20 @@ from ..compat import compat_str class DctpTvIE(InfoExtractor): - _VALID_URL = r'http://www.dctp.tv/(#/)?filme/(?P.+?)/$' + _VALID_URL = r'https?://www.dctp.tv/(#/)?filme/(?P.+?)/$' _TEST = { 'url': 'http://www.dctp.tv/filme/videoinstallation-fuer-eine-kaufhausfassade/', 'info_dict': { 'id': '1324', 'display_id': 'videoinstallation-fuer-eine-kaufhausfassade', 'ext': 'flv', - 'title': 'Videoinstallation für eine Kaufhausfassade'} + 'title': 'Videoinstallation für eine Kaufhausfassade' + }, + 'params': { + # rtmp download + 'skip_download': True, } + } def _real_extract(self, url): video_id = self._match_id(url) @@ -54,4 +59,3 @@ class DctpTvIE(InfoExtractor): 'ext': 'flv', 'display_id': video_id } -