mirror of
https://github.com/alexta69/metube.git
synced 2025-04-03 20:27:36 +03:00
Backend: Integrate file size calculation and API endpoint (#322)
This commit is contained in:
parent
4a3a27e71c
commit
d5e6c8bf98
1 changed files with 4 additions and 1 deletions
|
@ -39,6 +39,7 @@ class DownloadInfo:
|
|||
self.custom_name_prefix = custom_name_prefix
|
||||
self.msg = self.percent = self.speed = self.eta = None
|
||||
self.status = "pending"
|
||||
self.size = None
|
||||
self.timestamp = time.time_ns()
|
||||
self.error = error
|
||||
|
||||
|
@ -138,7 +139,9 @@ class Download:
|
|||
return
|
||||
self.tmpfilename = status.get('tmpfilename')
|
||||
if 'filename' in status:
|
||||
self.info.filename = os.path.relpath(status.get('filename'), self.download_dir)
|
||||
fileName = status['filename']
|
||||
self.info.filename = os.path.relpath(fileName, self.download_dir)
|
||||
self.info.size = os.path.getsize(fileName) if os.path.exists(fileName) else None
|
||||
|
||||
# Set correct file extension for thumbnails
|
||||
if(self.info.format == 'thumbnail'):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue