[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.

Fix incorrect default format shown help menu

Kasper (Aug 5, 2022, 4:03 AM +0200) be96308d 58d5219a

+3 -2
+1
CHANGELOG.md
··· 3 3 ## Next 4 4 - Add `opus` audio format 5 5 - Add default downloads folder on Linux 6 + - Fix incorrect default format shown help menu 6 7 7 8 ## 4.1.0 - 2022 Jul 30 8 9 - Default to `bestaudio`
+1 -1
README.md
··· 40 40 vidl [format] [options] <URL> 41 41 42 42 Download Options: 43 - format bestvideo (default), bestaudio, mp3, mp4, wav, m4a, or opus 43 + format bestvideo, bestaudio (default), mp3, mp4, wav, m4a, or opus 44 44 --no-md Don't add metadata to downloaded files 45 45 --no-smart-md Don't extract artist and song name from title 46 46 --no-embed Don't embed thumbnail
+1 -1
vidl/__init__.py
··· 27 27 print( ' '+cyan(package_name)+' [format] [options] <URL>') 28 28 print( '') 29 29 print(green( 'Download Options:')) 30 - print(cyan( ' format ')+'bestvideo (default), bestaudio, mp3, mp4, wav, m4a, or opus') 30 + print(cyan( ' format ')+'bestvideo, bestaudio (default), mp3, mp4, wav, m4a, or opus') 31 31 print(cyan( ' --no-md ')+'Don\'t add metadata to downloaded files') 32 32 print(cyan( ' --no-smart-md ')+'Don\'t extract artist and song name from title') 33 33 print(cyan( ' --no-embed ')+'Don\'t embed thumbnail')