aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--yt_dlp/extractor/rutv.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/yt_dlp/extractor/rutv.py b/yt_dlp/extractor/rutv.py
index 66ac32deb..0ea8253fa 100644
--- a/yt_dlp/extractor/rutv.py
+++ b/yt_dlp/extractor/rutv.py
@@ -181,7 +181,6 @@ class RUTVIE(InfoExtractor):
'rtmp_live': True,
'ext': 'flv',
'vbr': str_to_int(quality),
- 'quality': preference,
}
elif transport == 'm3u8':
formats.extend(self._extract_m3u8_formats(
@@ -192,9 +191,10 @@ class RUTVIE(InfoExtractor):
'url': url
}
fmt.update({
- 'width': width,
- 'height': height,
+ 'width': int_or_none(quality, default=height, invscale=width, scale=height),
+ 'height': int_or_none(quality, default=height),
'format_id': '%s-%s' % (transport, quality),
+ 'source_preference': preference,
})
formats.append(fmt)