update readme

This commit is contained in:
Cyberes 2023-01-21 18:30:22 -07:00
parent 4327221e30
commit e7812ce210
1 changed files with 9 additions and 8 deletions

View File

@ -18,7 +18,7 @@ I have a single, very large playlist that I add any videos I like to. On my NAS
- Simple display using `tqdm`.
- Limit the size of the downloaded videos.
- Parallel downloads.
- Daemon mode.
- Daemon mode for running as a system service.
### Installation
@ -58,11 +58,12 @@ Videos will be saved using this name format:
#### Arguments
| Argument | Flag | Help |
|---------------|------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------|
| `--no-update` | `-n` | Don\'t update yt-dlp at launch. |
| `--max-size` | | Max allowed size of a video in MB. Default: 1100. |
| `--rm-cache` | `-r` | Delete the yt-dlp cache on start. |
| Argument | Flag | Help |
| ------------- | ---- | ------------------------------------------------------------ |
| `--no-update` | `-n` | Don\'t update yt-dlp at launch. |
| `--max-size` | | Max allowed size of a video in MB. Default: 1100. |
| `--rm-cache` | `-r` | Delete the yt-dlp cache on start. |
| `--threads` | | How many download processes to use (threads). Default is how many CPU cores you have. You will want to find a good value that doesn't overload your connection. |
| `--daemon` | `-d` | Run in daemon mode. Disables progress bars sleeps for the amount of time specified in --sleep. |
| `--sleep` | | How many minutes to sleep when in daemon mode. |
| `--daemon` | `-d` | Run in daemon mode. Disables progress bars sleeps for the amount of time specified in --sleep. |
| `--sleep` | | How many minutes to sleep when in daemon mode. |
| `--silent` | `-s` | Don't print any error messages to the console. |