mirror of
https://source.netsyms.com/Mirrors/youtube-dl
synced 2024-11-03 03:40:20 +00:00
[moevideo] Make filesize exact
This commit is contained in:
parent
9face18d08
commit
0dc5365564
@ -34,7 +34,7 @@ class MoeVideoIE(InfoExtractor):
|
|||||||
'width': 540,
|
'width': 540,
|
||||||
'height': 360,
|
'height': 360,
|
||||||
'duration': 179,
|
'duration': 179,
|
||||||
'filesize_approx': 17822500,
|
'filesize': 17822500,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@ -49,7 +49,7 @@ class MoeVideoIE(InfoExtractor):
|
|||||||
'width': 480,
|
'width': 480,
|
||||||
'height': 296,
|
'height': 296,
|
||||||
'duration': 6027,
|
'duration': 6027,
|
||||||
'filesize_approx': 588257923,
|
'filesize': 588257923,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
]
|
]
|
||||||
@ -99,7 +99,7 @@ class MoeVideoIE(InfoExtractor):
|
|||||||
'url': video_url,
|
'url': video_url,
|
||||||
'width': width,
|
'width': width,
|
||||||
'height': height,
|
'height': height,
|
||||||
'filesize_approx': filesize,
|
'filesize': filesize,
|
||||||
}]
|
}]
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
Loading…
Reference in New Issue
Block a user