Update main.py
Browse files
main.py
CHANGED
@@ -245,10 +245,10 @@ async def download_video_max_quality(request: Request, payload: MaxDownloadReque
|
|
245 |
'format': format_selector,
|
246 |
'outtmpl': str(file_path_stem.with_suffix('.%(ext)s')),
|
247 |
'merge_output_format': 'mp4', # Merge into MP4 container
|
248 |
-
'noplaylist':
|
249 |
'quiet': True,
|
250 |
-
'verbose': True,
|
251 |
-
'noprogress':
|
252 |
}
|
253 |
if os.path.exists(COOKIE_FILE):
|
254 |
ydl_opts['cookiefile'] = COOKIE_FILE
|
|
|
245 |
'format': format_selector,
|
246 |
'outtmpl': str(file_path_stem.with_suffix('.%(ext)s')),
|
247 |
'merge_output_format': 'mp4', # Merge into MP4 container
|
248 |
+
'noplaylist': False,
|
249 |
'quiet': True,
|
250 |
+
#'verbose': True,
|
251 |
+
'noprogress': False
|
252 |
}
|
253 |
if os.path.exists(COOKIE_FILE):
|
254 |
ydl_opts['cookiefile'] = COOKIE_FILE
|