Set correct file extension for thumbnails

pull/148/head
1RandomDev 2022-08-24 18:10:49 +02:00
parent de322ad5d1
commit 0f27bf8545
1 changed files with 5 additions and 0 deletions

View File

@ -6,6 +6,7 @@ import time
import asyncio
import multiprocessing
import logging
import re
from dl_formats import get_format, get_opts
log = logging.getLogger('ytdl')
@ -124,6 +125,10 @@ class Download:
self.tmpfilename = status.get('tmpfilename')
if 'filename' in status:
self.info.filename = os.path.relpath(status.get('filename'), self.download_dir)
# Set correct file extension for thumbnails
if(self.info.format == 'thumbnail'):
self.info.filename = re.sub(r'\.webm$', '.jpg', self.info.filename)
self.info.status = status['status']
self.info.msg = status.get('msg')
if 'downloaded_bytes' in status: