[READ-ONLY] Mirror of https://github.com/probablykasper/vidl. CLI for downloading video/audio pypi.org/project/vidl
audio cli downloader metadata package video
0

Configure Feed

Select the types of activity you want to include in your feed.

Show progress

Kasper (Nov 13, 2025, 4:30 PM +0100) b77602e7 6fea5360

+4 -1
+1 -1
CHANGELOG.md
··· 2 2 3 3 ## Next 4 4 - Allow passing yt-dlp arguments 5 - - Show yt-dlp logs (previously, `--quiet` was used) 5 + - Show download progress 6 6 - Log info as JSON 7 7 - Faster downloads 8 8
+3
vidl/dl.py
··· 209 209 if options['format'] in ['bestvideo', 'bestaudio', 'mp3', 'm4a', 'mp4', 'opus'] and options['no_thumbnail_embed'] == False: 210 210 ydl_args += ['--embed-thumbnail'] 211 211 212 + if not options['verbose']: 213 + ydl_args += ['--quiet', '--progress'] 214 + 212 215 # band-aid solution for 403 error caused by cache 213 216 ydl_args += ['--rm-cache-dir'] 214 217