mirror of
https://codeberg.org/postscriptum/gemlog.git
synced 2026-02-18 22:12:40 +00:00
initial commit
This commit is contained in:
commit
259fee630b
127 changed files with 7811 additions and 0 deletions
31
public/en/youtube-downloads-with-yt-dlp.gmi
Normal file
31
public/en/youtube-downloads-with-yt-dlp.gmi
Normal 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
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue