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:
3
.gitignore
vendored
3
.gitignore
vendored
@ -9,4 +9,5 @@ tmp/
|
|||||||
/.env
|
/.env
|
||||||
/.coverage
|
/.coverage
|
||||||
/htmlcov
|
/htmlcov
|
||||||
/toot-*.tar.gz
|
/twitch-dl-*.tar.gz
|
||||||
|
/twitch-dl.1.man
|
||||||
|
5
Makefile
5
Makefile
@ -13,7 +13,7 @@ dist :
|
|||||||
|
|
||||||
clean :
|
clean :
|
||||||
find . -name "*pyc" | xargs rm -rf $1
|
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 :
|
publish :
|
||||||
twine upload dist/*
|
twine upload dist/*
|
||||||
@ -23,3 +23,6 @@ coverage:
|
|||||||
|
|
||||||
deb:
|
deb:
|
||||||
@python setup.py --command-packages=stdeb.command bdist_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
|
Reference in New Issue
Block a user