aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/faz.py
diff options
context:
space:
mode:
authorRogério Brito <rbrito@ime.usp.br>2018-01-04 03:48:53 -0200
committerRogério Brito <rbrito@ime.usp.br>2018-01-04 03:48:53 -0200
commit9113dfef91df19343cf76c6274dd0a85258c1004 (patch)
tree357bea65ff97d11085714837737d0428fbf40a54 /youtube_dl/extractor/faz.py
parent80893415fd8cecb59cb8ffbea17a183d4202f02e (diff)
parentb4a0c9f9de9d715538a1718922d6ab01a40f7ce3 (diff)
downloadyoutube-dl-9113dfef91df19343cf76c6274dd0a85258c1004.zip
youtube-dl-9113dfef91df19343cf76c6274dd0a85258c1004.tar.gz
youtube-dl-9113dfef91df19343cf76c6274dd0a85258c1004.tar.bz2
Update upstream source from tag 'upstream/2017.12.31'
Update to upstream version '2017.12.31' with Debian dir 1882f6f128562a71691f1092c6b611d46798c5c4
Diffstat (limited to 'youtube_dl/extractor/faz.py')
-rw-r--r--youtube_dl/extractor/faz.py34
1 files changed, 27 insertions, 7 deletions
diff --git a/youtube_dl/extractor/faz.py b/youtube_dl/extractor/faz.py
index 4bc8fc5..312ee2a 100644
--- a/youtube_dl/extractor/faz.py
+++ b/youtube_dl/extractor/faz.py
@@ -1,7 +1,10 @@
# coding: utf-8
from __future__ import unicode_literals
+import re
+
from .common import InfoExtractor
+from ..compat import compat_etree_fromstring
from ..utils import (
xpath_element,
xpath_text,
@@ -43,10 +46,15 @@ class FazIE(InfoExtractor):
webpage = self._download_webpage(url, video_id)
description = self._og_search_description(webpage)
- config_xml_url = self._search_regex(
- r'videoXMLURL\s*=\s*"([^"]+)', webpage, 'config xml url')
- config = self._download_xml(
- config_xml_url, video_id, 'Downloading config xml')
+ media = self._html_search_regex(
+ r"data-videojs-media='([^']+)",
+ webpage, 'media')
+ if media == 'extern':
+ perform_url = self._search_regex(
+ r"<iframe[^>]+?src='((?:http:)?//player\.performgroup\.com/eplayer/eplayer\.html#/?[0-9a-f]{26}\.[0-9a-z]{26})",
+ webpage, 'perform url')
+ return self.url_result(perform_url)
+ config = compat_etree_fromstring(media)
encodings = xpath_element(config, 'ENCODINGS', 'encodings', True)
formats = []
@@ -55,12 +63,24 @@ class FazIE(InfoExtractor):
if encoding is not None:
encoding_url = xpath_text(encoding, 'FILENAME')
if encoding_url:
- formats.append({
+ tbr = xpath_text(encoding, 'AVERAGEBITRATE', 1000)
+ if tbr:
+ tbr = int_or_none(tbr.replace(',', '.'))
+ f = {
'url': encoding_url,
'format_id': code.lower(),
'quality': pref,
- 'tbr': int_or_none(xpath_text(encoding, 'AVERAGEBITRATE')),
- })
+ 'tbr': tbr,
+ 'vcodec': xpath_text(encoding, 'CODEC'),
+ }
+ mobj = re.search(r'(\d+)x(\d+)_(\d+)\.mp4', encoding_url)
+ if mobj:
+ f.update({
+ 'width': int(mobj.group(1)),
+ 'height': int(mobj.group(2)),
+ 'tbr': tbr or int(mobj.group(3)),
+ })
+ formats.append(f)
self._sort_formats(formats)
return {