diff options
Diffstat (limited to 'youtube_dlc/extractor/arte.py')
-rw-r--r-- | youtube_dlc/extractor/arte.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/arte.py b/youtube_dlc/extractor/arte.py index 03abdbfaf..ca41aaea9 100644 --- a/youtube_dlc/extractor/arte.py +++ b/youtube_dlc/extractor/arte.py @@ -168,7 +168,9 @@ class ArteTVIE(ArteTVBaseIE): formats.append(format) - self._sort_formats(formats) + # For this extractor, quality only represents the relative quality + # with respect to other formats with the same resolution + self._sort_formats(formats, ('res', 'quality')) return { 'id': player_info.get('VID') or video_id, |