Readme: Added Options to Readme
This commit is contained in:
parent
7315c428c0
commit
facb363608
14
readme.md
14
readme.md
|
@ -51,10 +51,18 @@ go to settings > privacy and security > cookies > see all cookies > vhx.tv > __c
|
|||
copy the `content` and paste it into the `cookie` file \
|
||||
this needs to be redone every time the cookies expire (~30 minutes)
|
||||
|
||||
## how to use
|
||||
run the command
|
||||
## How to Use
|
||||
```
|
||||
./dropout-dl <episode-url>
|
||||
./dropout-dl <url> [OPTIONS]
|
||||
```
|
||||
|
||||
### Options
|
||||
```
|
||||
--help Display this message
|
||||
--quality Set the quality of the downloaded video. Quality can be set to 'all' which
|
||||
will download all qualities and place them into separate folders
|
||||
--verbose Display debug information while running
|
||||
--force-cookies Interpret the next to arguments as authentication cookie and session cookie
|
||||
```
|
||||
dropout-dl will download the episode into a folder with the name of the series in the format
|
||||
`S<season-num>E<episode-num><name>.mp4`
|
10
src/main.cpp
10
src/main.cpp
|
@ -366,11 +366,11 @@ public:
|
|||
std::cout << "Usage: dropout-dl [OPTIONS] <url> [OPTIONS]\n"
|
||||
"\n"
|
||||
"Options:\n"
|
||||
"\t--help\t\t\t\tDisplay this message\n"
|
||||
"\t--quality\t\t\tSet the quality of the downloaded video. Quality can be set to 'all' which\n"
|
||||
"\t\t\t\t\t\twill download all qualities and place them into separate folders\n"
|
||||
"\t--verbose\t\t\tDisplay debug information while running\n"
|
||||
"\t--force-cookies\t\tInterpret the next to arguments as authentication cookie and session cookie\n"
|
||||
"\t--help Display this message\n"
|
||||
"\t--quality Set the quality of the downloaded video. Quality can be set to 'all' which\n"
|
||||
"\t will download all qualities and place them into separate folders\n"
|
||||
"\t--verbose Display debug information while running\n"
|
||||
"\t--force-cookies Interpret the next to arguments as authentication cookie and session cookie\n"
|
||||
<< std::endl;
|
||||
|
||||
exit(0);
|
||||
|
|
Loading…
Reference in New Issue