youtube-dl

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

commit fa64a8431166ad7ca7bd2881306ee379b6e2abfd
parent e0f06eae432e592b159237f2ce9813449431cc7b
Author: remitamine <remitamine@gmail.com>
Date:   Sat, 19 Dec 2015 19:02:04 +0100

[faz] fix info extraction

Diffstat:
Myoutube_dl/extractor/faz.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/faz.py b/youtube_dl/extractor/faz.py @@ -38,7 +38,7 @@ class FazIE(InfoExtractor): webpage = self._download_webpage(url, video_id) config_xml_url = self._search_regex( - r'writeFLV\(\'(.+?)\',', webpage, 'config xml url') + r'(?:var\s+)?videoXMLURL\s*=\s*"([^"]+)', webpage, 'config xml url') config = self._download_xml( config_xml_url, video_id, 'Downloading config xml')