mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[bild] Simplify (#3983)
This commit is contained in:
		| @@ -1,46 +1,39 @@ | |||||||
| from __future__ import unicode_literals | #coding: utf-8 | ||||||
|  | from __future__ import unicode_literals | ||||||
| import re |  | ||||||
|  | from .common import InfoExtractor | ||||||
| from .common import InfoExtractor | from ..utils import int_or_none | ||||||
|  |  | ||||||
|  |  | ||||||
| class BildIE(InfoExtractor): | class BildIE(InfoExtractor): | ||||||
|     IE_NAME = 'bild' |     _VALID_URL = r'https?://(?:www\.)?bild\.de/(?:[^/]+/)+(?P<display_id>[^/]+)-(?P<id>\d+)(?:,auto=true)?\.bild\.html' | ||||||
|     _TEST = { |     IE_DESC = 'Bild.de' | ||||||
|         'url': 'http://www.bild.de/video/clip/apple-ipad-air/das-koennen-die-neuen-ipads-38184146.bild.html', |     _TEST = { | ||||||
|         'info_dict': { |         'url': 'http://www.bild.de/video/clip/apple-ipad-air/das-koennen-die-neuen-ipads-38184146.bild.html', | ||||||
|             'id': '38184146', |         'md5': 'dd495cbd99f2413502a1713a1156ac8a', | ||||||
|             'title': 'BILD hat sie getestet', |         'info_dict': { | ||||||
|             'thumbnail': 'http://bilder.bild.de/fotos/stand-das-koennen-die-neuen-ipads-38184138/Bild/1.bild.jpg', |             'id': '38184146', | ||||||
|             'duration': 196, |             'ext': 'mp4', | ||||||
|         } |             'title': 'BILD hat sie getestet', | ||||||
|     } |             'thumbnail': 'http://bilder.bild.de/fotos/stand-das-koennen-die-neuen-ipads-38184138/Bild/1.bild.jpg', | ||||||
|      |             'duration': 196, | ||||||
|     #http://www.bild.de/video/clip/apple-ipad-air/das-koennen-die-neuen-ipads-38184146.bild.html |             'description': 'Mit dem iPad Air 2 und dem iPad Mini 3 hat Apple zwei neue Tablet-Modelle präsentiert. BILD-Reporter Sven Stein durfte die Geräte bereits testen. ', | ||||||
|     _VALID_URL = r'http?://(?:www\.)?bild\.de/(?:[^/]+/)+(?P<display_id>[^/]+)-(?P<id>\d+)(?:,auto=true)?\.bild\.html' |         } | ||||||
|      |     } | ||||||
|     def _real_extract(self, url): |  | ||||||
|         m = re.match(self._VALID_URL, url) |     def _real_extract(self, url): | ||||||
|         video_id = m.group('id') |         video_id = self._match_id(url) | ||||||
|          |  | ||||||
|         #webpage = self._download_webpage(url, video_id) |         xml_url = url.split(".bild.html")[0] + ",view=xml.bild.xml" | ||||||
|          |         doc = self._download_xml(xml_url, video_id) | ||||||
|         xml_url = url.split(".bild.html")[0]+",view=xml.bild.xml" |  | ||||||
|          |         duration = int_or_none(doc.attrib.get('duration'), scale=1000) | ||||||
|         doc = self._download_xml(xml_url, video_id) |  | ||||||
|          |         return { | ||||||
|         video_url = doc.attrib['src'] |             'id': video_id, | ||||||
|         title = doc.attrib['ueberschrift'] |             'title': doc.attrib['ueberschrift'], | ||||||
|         description = doc.attrib['text'] |             'description': doc.attrib.get('text'), | ||||||
|         thumbnail = doc.attrib['img'] |             'url': doc.attrib['src'], | ||||||
|         duration = int(doc.attrib['duration'])/1000 |             'thumbnail': doc.attrib.get('img'), | ||||||
|  |             'duration': duration, | ||||||
|         return { |         } | ||||||
|             'id': video_id, |  | ||||||
|             'title': title, |  | ||||||
|             'description': description, |  | ||||||
|             'url': video_url, |  | ||||||
|             'thumbnail': thumbnail, |  | ||||||
|             'duration': duration, |  | ||||||
|         } |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Philipp Hagemeister
					Philipp Hagemeister