initial commit

This commit is contained in:
postscriptum 2025-09-11 12:43:12 +03:00
commit 259fee630b
127 changed files with 7811 additions and 0 deletions

View file

@ -0,0 +1,31 @@
# YouTube downloads with yt-dlp
## Download in max resolution
``` bash
yt-dlp CHANNEL_URL|PLAYLIST_URL|VIDEO_URL
```
## Change default resolution to 1080
``` bash
yt-dlp CHANNEL_URL|PLAYLIST_URL|VIDEO_URL -S res:1080
```
## Download to location by source meta mask
``` bash
yt-dlp CHANNEL_URL/playlists -o '%(uploader)s/%(playlist)s/%(title)s.%(ext)s'
```
## Extract audio
``` bash
yt-dlp CHANNEL_URL|PLAYLIST_URL|VIDEO_URL --extract-audio --audio-format vorbis
```
## Get help
``` bash
yt-dlp --help
```