about summary refs log tree commit diff
path: root/youtube_dl/extractor/canalc2.py
diff options
context:
space:
mode:
authorPierre Rudloff <contact@rudloff.pro>2013-08-22 14:47:51 +0200
committerPierre Rudloff <contact@rudloff.pro>2013-08-22 14:47:51 +0200
commitff2424595adf02cbe5d1f1071e53c3b2e5f32c9e (patch)
tree1ad0d51e92a93a6fb13db8b5e9318d62098e2bed /youtube_dl/extractor/canalc2.py
parentcd0abcc0bb4c218fd02850a139b626d252e22599 (diff)
downloadyoutube-dl-ff2424595adf02cbe5d1f1071e53c3b2e5f32c9e.tar.gz
youtube-dl-ff2424595adf02cbe5d1f1071e53c3b2e5f32c9e.tar.xz
youtube-dl-ff2424595adf02cbe5d1f1071e53c3b2e5f32c9e.zip
lxml is not part of the standard library.
Diffstat (limited to 'youtube_dl/extractor/canalc2.py')
-rw-r--r--youtube_dl/extractor/canalc2.py8
1 files changed, 3 insertions, 5 deletions
diff --git a/youtube_dl/extractor/canalc2.py b/youtube_dl/extractor/canalc2.py
index d0e2ed536..215abf537 100644
--- a/youtube_dl/extractor/canalc2.py
+++ b/youtube_dl/extractor/canalc2.py
@@ -1,7 +1,6 @@
 # coding: utf-8
 """Extractor for canalc2.tv"""
 import re
-import lxml.html
 
 from .common import InfoExtractor
 
@@ -25,10 +24,9 @@ class Canalc2IE(InfoExtractor):
             webpage).group(1)
         
         video_url = 'http://vod-flash.u-strasbg.fr:8080/' + file_name
-        
-        html   = lxml.html.fromstring(webpage)
-        
-        title = html.cssselect('.evenement8')[0].text_content()
+
+        title = self._html_search_regex(r'class="evenement8">(.*?)</a>',
+            webpage, u'title')
         
         return {'id': video_id,
                 'ext' : 'mp4',