about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-12-08 16:34:57 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-12-08 16:35:29 +0100
commitac5118bcb92a489eec0e9997e55e07945dc720db (patch)
treeec1649ef25bcdd7dff7138b4946fc7d8f9a133e9
parent5adb81894724a05f2273828d74c4cff86a7bdab6 (diff)
downloadyoutube-dl-ac5118bcb92a489eec0e9997e55e07945dc720db.tar.gz
youtube-dl-ac5118bcb92a489eec0e9997e55e07945dc720db.tar.xz
youtube-dl-ac5118bcb92a489eec0e9997e55e07945dc720db.zip
[arte.tv:ddc] Add fields to the test and skip download (rtmp)
-rw-r--r--youtube_dl/extractor/arte.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/youtube_dl/extractor/arte.py b/youtube_dl/extractor/arte.py
index 2c472464e..4b7bef775 100644
--- a/youtube_dl/extractor/arte.py
+++ b/youtube_dl/extractor/arte.py
@@ -261,6 +261,7 @@ class ArteTVFutureIE(ArteTVPlus7IE):
         row = get_element_by_id(anchor_id, webpage)
         return self._extract_from_webpage(row, anchor_id, lang)
 
+
 class ArteTVDDCIE(ArteTVPlus7IE):
     IE_NAME = u'arte.tv:ddc'
     _VALID_URL = r'http?://ddc\.arte\.tv/(?P<lang>emission|folge)/(?P<id>.+)'
@@ -270,6 +271,12 @@ class ArteTVDDCIE(ArteTVPlus7IE):
         u'file': u'049881-009_PLUS7-D.flv',
         u'info_dict': {
             u'title': u'Mit offenen Karten',
+            u'description': u'md5:57929b0eaeddeb8a0c983f58e9ebd3b6',
+            u'upload_date': u'20131207',
+        },
+        u'params': {
+            # rtmp download
+            u'skip_download': True,
         },
     }