mirror of
https://github.com/tropicoo/yt-dlp-bot.git
synced 2025-03-03 18:23:34 +08:00
997 B
997 B
Release info
Version: 0.9
Release date: February 16, 2023
Important
- Changed format of
YTDL_OPTS
inapp_worker/ytdl_opts/default.py
fromdict
tolist
for proper parsing onyt_dlp
side:
This means only# Old format YTDL_OPTS = { 'outtmpl': '%(title).200B.%(ext)s', 'format': 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/mp4', 'noplaylist': True, 'playlist_items': '1:1', 'writethumbnail': True, 'concurrent_fragment_downloads': 5, } # New format YTDL_OPTS = [ '--output', '%(title).200B.%(ext)s', '--format', 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/mp4', '--no-playlist', '--playlist-items', '1:1', '--write-thumbnail', '--convert-thumbnails', 'jpg', '--concurrent-fragments', '5', '--verbose', ]
yt-dlp
CLI options can be added (yt-dlp --help
to list all of them).
New features
N/A
Misc
N/A