mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
Fix downloader none return and handle preview filetype
This commit is contained in:
parent
d1f9f08963
commit
a050b370cb
1 changed files with 18 additions and 1 deletions
|
@ -113,9 +113,26 @@ class DeezerFD(FileDownloader):
|
|||
}, info_dict)
|
||||
|
||||
stream, realfilename = sanitize_open(filename, "wb")
|
||||
success = False
|
||||
try:
|
||||
decryptfile(data, info_dict['key'], stream, progressupdate)
|
||||
if 'key' in info_dict:
|
||||
decryptfile(data, info_dict['key'], stream, progressupdate)
|
||||
# If there is no key it's just a preview without encryption
|
||||
else:
|
||||
i = 0
|
||||
byte_counter = 0
|
||||
while True:
|
||||
buf = data.read(2048)
|
||||
if not buf:
|
||||
break
|
||||
stream.write(buf)
|
||||
i += 1
|
||||
byte_counter += len(buf)
|
||||
if (i % 16) == 0:
|
||||
progressupdate(byte_counter)
|
||||
progressfinished()
|
||||
success = True
|
||||
finally:
|
||||
if realfilename != '-':
|
||||
stream.close()
|
||||
return success
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue