Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 879 Bytes

README.md

File metadata and controls

35 lines (24 loc) · 879 Bytes

Kino.pub downloader

It's utility for downloading media content from Kino.Pub. You need PRO account for using. At now it's support only downloading by podcasts links

How to use

Build docker image

$ make build-docker

Create config file

$ cp config.example.toml config.toml

Run docker image

docker run --rm -v /path/to/config.toml:/app/config.toml -v /path/to/download/folder:/app/data --name kinopub-downloader kinopub-downloader:local 

Proxy

Because Kino.Pub was ban in some countries you need use vpn or proxy if you have problems with download. You can set up proxy server as env variable

$ export HTTPS_PROXY="(http|socks5)://proxyIp:proxyPort"
# also it work with docker image
$ docker run .... -e HTTPS_PROXY="(http|socks5)://proxyIp:proxyPort" ....