Skip to content

Set up bible audio on Http server

Eliran Wong edited this page Apr 21, 2022 · 5 revisions

Set up bible audio on Http-server

This apply to setup of public server, local server, or running UBA on Android with Termux.

Download audio bibles to audio folder

  1. Create "bibles" directory, if it does not exist:

cd UniqueBible/audio

mkdir "bibles"

  1. Install bible audio

Check for available audio bibles, for examples, repositories starting from "MP3_" at https://github.com/eliranwong?tab=repositories

For example, to install KJV (British accents)

cd UniqueBible/audio/bibles

mkdir KJV

cd KJV

git clone https://github.com/eliranwong/MP3_KingJamesVersion_british

mv MP3_KingJamesVersion_british default

cp ../../../util/unzip_all.py default/unzip_all.py

cd default

python3 unzip_all.py

rm *.zip

Link Audio Folder for Http Access

cd UniqueBible/htmlResources

ln -s ../audio/ audio

Clone this wiki locally