diff options
author | Pierre Rudloff <contact@rudloff.pro> | 2013-08-22 14:47:51 +0200 |
---|---|---|
committer | Pierre Rudloff <contact@rudloff.pro> | 2013-08-22 14:47:51 +0200 |
commit | ff2424595adf02cbe5d1f1071e53c3b2e5f32c9e (patch) | |
tree | 1ad0d51e92a93a6fb13db8b5e9318d62098e2bed | |
parent | cd0abcc0bb4c218fd02850a139b626d252e22599 (diff) |
lxml is not part of the standard library.
-rw-r--r-- | youtube_dl/extractor/canalc2.py | 8 |
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', |