Update yt_dlp_handler.py

updated the ID to title
This commit is contained in:
Profomedia 2024-04-26 14:43:55 +03:00 committed by GitHub
parent e0f1828d9c
commit 4ec98ebd9b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ class VideoDownloader:
"""initial obs"""
self.obs = {
"merge_output_format": "mp4",
"outtmpl": (self.cache_dir + "/download/%(id)s.mp4"),
"outtmpl": (self.cache_dir + "/download/%(title)s.mp4"),
"progress_hooks": [self._progress_hook],
"noprogress": True,
"continuedl": True,