blob: 25623bfada42069659e413acab309c35c34ccb8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Youtube Downloader CLI - ytdl
## Usage
```shell
ytdl "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
```
By default, downloads the audio and video and stitches it together in the current directory. Automatically detects playlists.
- `-a` - audio only
- `-v` - video only
- `-av` - audio + video separate
- `-f` - force replace if file exists
## Build From Source:
1. Clone the repo
2. In the directory, run the installation file
```shell
sh install.sh
```
## TODO:
- [ ] Figure out why -av takes so long compared to -a and -v
|