mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-10 20:24:33 +01:00
[gfycat] Fixed preferences.
This commit is contained in:
parent
4aec95f3c9
commit
954352c4c0
@ -63,7 +63,7 @@ class GfycatIE(InfoExtractor):
|
|||||||
'height': json['height'],
|
'height': json['height'],
|
||||||
'fps': json['frameRate'],
|
'fps': json['frameRate'],
|
||||||
'filesize': json['mp4Size'],
|
'filesize': json['mp4Size'],
|
||||||
'preference': '-1'
|
'preference': 2
|
||||||
}, {
|
}, {
|
||||||
'format_id': 'webm',
|
'format_id': 'webm',
|
||||||
'ext': 'webm',
|
'ext': 'webm',
|
||||||
@ -72,7 +72,7 @@ class GfycatIE(InfoExtractor):
|
|||||||
'height': json['height'],
|
'height': json['height'],
|
||||||
'fps': json['frameRate'],
|
'fps': json['frameRate'],
|
||||||
'filesize': json['webmSize'],
|
'filesize': json['webmSize'],
|
||||||
'preference': 0
|
'preference': 1
|
||||||
}, {
|
}, {
|
||||||
'format_id': 'gif',
|
'format_id': 'gif',
|
||||||
'ext': 'gif',
|
'ext': 'gif',
|
||||||
@ -81,7 +81,7 @@ class GfycatIE(InfoExtractor):
|
|||||||
'height': json['height'],
|
'height': json['height'],
|
||||||
'fps': json['frameRate'],
|
'fps': json['frameRate'],
|
||||||
'filesize': json['gifSize'],
|
'filesize': json['gifSize'],
|
||||||
'preference': 1
|
'preference': 0
|
||||||
}]
|
}]
|
||||||
|
|
||||||
self._sort_formats(formats)
|
self._sort_formats(formats)
|
||||||
|
Loading…
Reference in New Issue
Block a user