mirror of
https://github.com/alexta69/metube.git
synced 2025-04-05 05:07:37 +03:00
fix download filename (closes #252)
This commit is contained in:
parent
6721ed839d
commit
c5a23a5d5a
1 changed files with 5 additions and 1 deletions
|
@ -71,7 +71,11 @@ class Download:
|
|||
)})
|
||||
def put_status_postprocessor(d):
|
||||
if d['postprocessor'] == 'MoveFiles' and d['status'] == 'finished':
|
||||
self.status_queue.put({'status': 'finished', 'filename': d['info_dict']['_filename']})
|
||||
if '__finaldir' in d['info_dict']:
|
||||
filename = os.path.join(d['info_dict']['__finaldir'], os.path.basename(d['info_dict']['filepath']))
|
||||
else:
|
||||
filename = d['info_dict']['filepath']
|
||||
self.status_queue.put({'status': 'finished', 'filename': filename})
|
||||
ret = yt_dlp.YoutubeDL(params={
|
||||
'quiet': True,
|
||||
'no_color': True,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue