mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[ruutu] Don't use fallback for DASH and other non-HTTP urls
This commit is contained in:
parent
223544552f
commit
d00735a0c5
1 changed files with 2 additions and 0 deletions
|
@ -62,6 +62,8 @@ def _real_extract(self, url):
|
|||
formats.extend(self._extract_f4m_formats(url, media_id, f4m_id='hds'))
|
||||
parsed_urls.append(url)
|
||||
else:
|
||||
if not fmt.tag.startswith('HTTP'):
|
||||
continue
|
||||
proto = compat_urllib_parse_urlparse(url).scheme
|
||||
width_str, height_str = fmt.get('resolution').split('x')
|
||||
tbr = int(fmt.get('bitrate', 0))
|
||||
|
|
Loading…
Reference in a new issue