mirror of
https://github.com/ihabunek/twitch-dl
synced 2024-08-30 18:32:25 +00:00
Add man page
This commit is contained in:
parent
7d152f6424
commit
398d49ac26
3
.gitignore
vendored
3
.gitignore
vendored
@ -9,4 +9,5 @@ tmp/
|
||||
/.env
|
||||
/.coverage
|
||||
/htmlcov
|
||||
/toot-*.tar.gz
|
||||
/twitch-dl-*.tar.gz
|
||||
/twitch-dl.1.man
|
||||
|
5
Makefile
5
Makefile
@ -13,7 +13,7 @@ dist :
|
||||
|
||||
clean :
|
||||
find . -name "*pyc" | xargs rm -rf $1
|
||||
rm -rf build dist MANIFEST htmlcov deb_dist toot*.tar.gz
|
||||
rm -rf build dist MANIFEST htmlcov deb_dist twitch-dl*.tar.gz twitch-dl.1.man
|
||||
|
||||
publish :
|
||||
twine upload dist/*
|
||||
@ -23,3 +23,6 @@ coverage:
|
||||
|
||||
deb:
|
||||
@python setup.py --command-packages=stdeb.command bdist_deb
|
||||
|
||||
man:
|
||||
scdoc < twitch-dl.1.scd > twitch-dl.1.man
|
||||
|
47
twitch-dl.1.scd
Normal file
47
twitch-dl.1.scd
Normal file
@ -0,0 +1,47 @@
|
||||
twitch-dl(1)
|
||||
|
||||
# NAME
|
||||
|
||||
twitch-dl - download twitch.tv videos quickly
|
||||
|
||||
# SYNOPSYS
|
||||
|
||||
twitch-dl videos [options] [channel\_name]
|
||||
|
||||
twitch-dl download [options] [video\_id]
|
||||
|
||||
# DESCRIPTION
|
||||
|
||||
twitch-dl is a command-line tool for downloading videos from Twitch (twitch.tv).
|
||||
It uses multiple workers to download VODs in paralel which makes it considerably
|
||||
faster than tools which download them one at the time, such as youtube-dl.
|
||||
|
||||
# EXAMPLES
|
||||
|
||||
List recent videos from bananasaurus\_rex's channel:
|
||||
|
||||
```
|
||||
twitch-dl videos bananasaurus_rex
|
||||
```
|
||||
|
||||
Download by URL:
|
||||
|
||||
```
|
||||
twitch-dl download https://www.twitch.tv/videos/377220226
|
||||
```
|
||||
|
||||
Download by ID:
|
||||
|
||||
```
|
||||
twitch-dl download 377220226
|
||||
```
|
||||
|
||||
# SEE ALSO
|
||||
|
||||
youtube-dl(1)
|
||||
|
||||
# COPYRIGHT
|
||||
|
||||
Copyright Ivan Habunek <ivan@habunek.com>
|
||||
|
||||
Licensed under the GPLv3: http://www.gnu.org/licenses/gpl-3.0.html
|
Loading…
Reference in New Issue
Block a user