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

Default to `bestaudio`

Kasper (Jul 30, 2022, 12:36 AM +0200) 2dbf9f36 f3ec3437

+6 -3
+3
CHANGELOG.md
··· 1 + ## Next 2 + - Default to `bestaudio` 3 + 1 4 ## 4.0.1 - 2022 Apr 15 2 5 - Fix help menu 3 6
+1 -1
README.md
··· 40 40 vidl [format] [options] <URL> 41 41 42 42 Download Options: 43 - format bestvideo, bestaudio, mp3, mp4, wav or m4a. Default mp3 43 + format bestvideo (default), bestaudio, mp3, mp4, wav or m4a 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, bestaudio, mp3, mp4, wav or m4a. Default mp3') 30 + print(cyan( ' format ')+'bestvideo (default), bestaudio, mp3, mp4, wav or m4a') 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')
+1 -1
vidl/dl.py
··· 11 11 12 12 options = { 13 13 'url': '', 14 - 'format': 'mp3', 14 + 'format': 'bestaudio', 15 15 'audio_only': True, 16 16 'no_md': False, 17 17 'no_thumbnail_embed': False,