Basic support for TED
authorJaime Marquínez Ferrándiz <jaimemf93@gmail.com>
Sun, 17 Feb 2013 16:13:06 +0000 (17:13 +0100)
committerJaime Marquínez Ferrándiz <jaimemf93@gmail.com>
Sun, 17 Feb 2013 16:13:06 +0000 (17:13 +0100)
test/tests.json
youtube_dl/InfoExtractors.py

index 5c46af2c8896af2a0bc58ca8fd0f827f7ee2e0e5..a6782ed4c6cd742b192be083b8f98f9a80a7c368 100644 (file)
       "title": "test chars: \"'/\\ä<>This is a test video for youtube-dl.For more information, contact phihag@phihag.de ."
     }
 
+  },
+  {
+    "name": "TED",
+    "url": "http://www.ted.com/talks/dan_dennett_on_our_consciousness.html",
+    "file": "102.mp4",
+    "md5": "7bc087e71d16f18f9b8ab9fa62a8a031",
+    "info_dict": {
+        "title": "Dan Dennett: The illusion of consciousness"
+    }
   }
 ]
index ac69f82fe95345dbb67e7441ed3f66de4627e613..742b036d3dd6fd246ffc450671262a8deb76458c 100755 (executable)
@@ -3967,6 +3967,30 @@ class KeekIE(InfoExtractor):
                 'uploader': uploader
         }
         return [info]
+        
+class TEDIE(InfoExtractor):
+    _VALID_URL=r'http://www.ted.com/talks/(?P<videoName>\w+)'
+    def _real_extract(self, url):
+        m=re.match(self._VALID_URL, url)
+        videoName=m.group('videoName')
+        webpage=self._download_webpage(url, 0, 'Downloading \"%s\" page' % videoName)
+        #If the url includes the language we get the title translated
+        title_RE=r'<h1><span id="altHeadline" >(?P<title>[\s\w:/\.\?=\+-]*)</span></h1>'
+        title=re.search(title_RE, webpage).group('title')
+        info_RE=r'''<script\ type="text/javascript">var\ talkDetails\ =(.*?)
+                        "id":(?P<videoID>[\d]+).*?
+                        "mediaSlug":"(?P<mediaSlug>[\w\d]+?)"'''
+        info_match=re.search(info_RE,webpage,re.VERBOSE)
+        video_id=info_match.group('videoID')
+        mediaSlug=info_match.group('mediaSlug')
+        video_url='http://download.ted.com/talks/%s.mp4' % mediaSlug
+        info = {
+                'id':video_id,
+                'url':video_url,
+                'ext': 'mp4',
+                'title': title
+        }
+        return [info]
 
 def gen_extractors():
     """ Return a list of an instance of every supported extractor.
@@ -4015,6 +4039,7 @@ def gen_extractors():
         RBMARadioIE(),
         EightTracksIE(),
         KeekIE(),
+        TEDIE(),
         GenericIE()
     ]