To download a copy of the whole AllThePreaching.com archive,
you can use the rclone
command-line utility. It works on all major
operating systems like Windows, Mac, Linux, BSD, etc.
Download rclone here: https://rclone.org/downloads/
Basic documentation: https://rclone.org/install/
It can also be compiled from source or installed from most repositories.
Once you have it installed, open a terminal or command prompt and run:
rclone version
If you get an error about the command not being found, you need to ensure that it's available in your default PATH variable.
Run the following to initially configure your download source:
rclone config
You will be prompted to add a new one.
No remotes found, make a new one? n) New remote s) Set configuration password q) Quit config n/s/q> n
Press "n" to add a new remote source and then give it a name. We'll use "atp" for the example.
Enter name for new remote. name> atp
Next it will ask for the storage backend. Type "http" at the prompt.
Option Storage. Type of storage to configure. Choose a number from below, or type in your own value [...] Storage> http
It will ask for a URL. Input the following:
Option url. URL of HTTP host to connect to. Enter a value. url> https://www.kjv1611only.com/videoSimply press enter at the next prompt.
Option no_escape. Do not escape URL metacharacters in path names. Enter a boolean value (true or false). Press Enter for the default (false). no_escape>When asked to edit the advanced config, press "n" and finish by confirming that the configuration is OK. You can then hit "q" when prompted to quit and exit.
Now you should decide where you want to store the archive.
It's at least 3TB as of 2025 and will continue to grow. For this example,
we'll use /home/kjv/Downloads
as the local directory where
everything will be put. You can substitute that path with something like
/Users/kjv/Downloads
on macOS or C:\Users\kjv
on Windows.
If you want to copy the entire archive, including all the subtitle files, MP3 audio versions, and thumbnail images, run the following:
rclone -P copy atp: /home/kjv/Downloads
To download only the MP4 video files, run the following:
rclone -P copy --include "*mp4" atp: /home/kjv/Downloads
The --exclude
option can also be used if you only want to filter out
MP3s or the .vtt
subtitle files.
The same command can be run later on to download newer files that have been added since the last time it was run.