1
0
Fork 0

Update to ytdl-commit-a726009

[blinkx] Remove extractor
a726009987
This commit is contained in:
pukkandan 2021-05-06 21:31:20 +05:30
commit 41d1cca328
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
17 changed files with 252 additions and 108 deletions

View file

@ -19,6 +19,7 @@ from ..utils import (
strip_or_none,
unified_timestamp,
update_url_query,
url_or_none,
xpath_text,
)
@ -52,6 +53,9 @@ class TwitterBaseIE(InfoExtractor):
return [f], {}
def _extract_formats_from_vmap_url(self, vmap_url, video_id):
vmap_url = url_or_none(vmap_url)
if not vmap_url:
return []
vmap_data = self._download_xml(vmap_url, video_id)
formats = []
subtitles = {}