mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[vidme] Prefer non clip (Closes #6924)
This commit is contained in:
parent
4395ca2e04
commit
05b476a270
1 changed files with 1 additions and 0 deletions
|
@ -119,6 +119,7 @@ def _real_extract(self, url):
|
|||
'url': f['uri'],
|
||||
'width': int_or_none(f.get('width')),
|
||||
'height': int_or_none(f.get('height')),
|
||||
'preference': 0 if f.get('type', '').endswith('clip') else 1,
|
||||
} for f in video.get('formats', []) if f.get('uri')]
|
||||
self._sort_formats(formats)
|
||||
|
||||
|
|
Loading…
Reference in a new issue