youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 7a249480b47767dcd5b872563fd715afd01f777a
parent f605128d131b3084a6f2e098df1561892cecfc3e
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Mon, 24 Mar 2014 22:34:03 +0100

[arte] Fix video.arte.tv extractor

Diffstat:
Myoutube_dl/extractor/arte.py | 7+++++--
1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/youtube_dl/extractor/arte.py b/youtube_dl/extractor/arte.py @@ -2,7 +2,6 @@ from __future__ import unicode_literals import re -import json from .common import InfoExtractor from ..utils import ( @@ -25,6 +24,10 @@ class ArteTvIE(InfoExtractor): IE_NAME = 'arte.tv' def _real_extract(self, url): + mobj = re.match(self._VALID_URL, url) + lang = mobj.group('lang') + video_id = mobj.group('id') + ref_xml_url = url.replace('/videos/', '/do_delegate/videos/') ref_xml_url = ref_xml_url.replace('.html', ',view,asPlayerXml.xml') ref_xml_doc = self._download_xml( @@ -47,7 +50,7 @@ class ArteTvIE(InfoExtractor): 'id': video_id, 'title': title, 'thumbnail': thumbnail, - 'url': video_url, + 'formats': formats, 'ext': 'flv', }