Skip to content
Lovi edited this page Dec 31, 2024 · 6 revisions

Termux Tutorial

This is a tutorial to install the downloader on Termux, which is an Android Terminal Emulator Based off android linux kernel.

Table of Contents

Requirement

In order to install this you will need:

  • Android>=6.0
  • Termux (Installed from F-Droid or via APK)

Installation

Open Termux Enable Storage permission for Termux with this command

termux-setup-storage

Upgrade and update packages

pkg upgrade & pkg update

Install ffmpeg

pkg install ffmpeg

Install Python

pkg install python -y

If not already installed

pkg install python-pip

Go to the emulated storage folder

cd storage

Download the repository (Here we use git but you are free to just download the zip from the Releases Section)

pkg install git -y
git clone https://github.com/Lovi-0/StreamingCommunity

Go to the StreamingCommunity_api folder

cd StreamingCommunity_api

Install the python requirements

pip install -r requirements.txt

Usage

python3 test_run.py

Issues

Common Issues

  • If pkg update fails try to change your repo location

tqdm related issues

  • If you experience issues where all segments fail during the operation, open the config.json file and set tqdm_use_large_bar to false. This can help resolve problems with loading large progress bars:
{
  "tqdm_use_large_bar": false
}
Clone this wiki locally