these are several downloaders written in bash
- archive.org
- gofile.io
- netzkino.de
- pluto.tv
- tiktok
- take a look at the releases tab
- download the script
- read the script or build it yourself from modules
- make it runnable for example with
chmod 700 media_dl.sh
- run it with
./media_dl.sh "link_to_supported_website"
For more infos consult the readme of each module if there is anything specific to note
run ./build.sh
in the main directory of the repository
please add dependencies here as you go
- tiktok (direct video link only)
- netzkino.de (several types of movies)
- twitter (single post with text in json form)
- pluto (tv-live rec / ondemand content)
- archive.org (entire listing except autogenerated files)
- create a new folder
- create a
script.sh
in that folder - create a self contained download script here that follows the following specifications
- the script should only need one argument which is the link to the content
- the link used in the downloader is a variable called
link
- if a useragent is user it should be a variable called
useragent
- there needs to be a url for which the module supports. it needs to be only one link.
- the link should be denoted like
#link "url.domain/"
or#link "url.domain/videos"
- set up link, useragent and the applicable link filter in your self contained script before
#cutoff
- after
#cutoff
should the fully working and fully self contained part which only rely onlink
anduseragent
- create a new branch and put in a pull request if you want to contribute
- the script is for bash so you need bash and the default tools
- dos2unix since some files might be formatted the wrong way
- a better readme
- debian setup script (maybe)