update readme

This commit is contained in:
Simon Vieille 2022-08-23 12:31:44 +02:00
parent a723c342bf
commit 547f06a82a
Signed by: deblan
GPG Key ID: 579388D585F70417
1 changed files with 11 additions and 0 deletions

View File

@ -37,4 +37,15 @@ In case of a reverse proxy, edit the API Url, eg: `--api-url https://videos.exam
By default, videos are listed from oldest to newer. You can sort by name this using `--order name`.
To search videos by name, use `--name xxxxx`.
You have several ways to select videos:
* by number:
* `10`
* `1 12 42`
* by range:
* `1-12`: equals `1 2 3 ... 12`
* `10-1`: equals `10 9 7 ... 1`
* `*` or `*+`: equals `1 2 ... x`
* `-*`: equals `x ... 3 2 1`
* `12-`: equals `12 11 10 ... 1`
* `12+`: equals `12 13 14 ... x`