Rpsl / kinopub-downloader

Simple service for downloading TV Shows from https://kino.pub
5 stars 1 forks source link

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" ....