Last active
December 18, 2022 16:12
-
-
Save toxdes/947ba6f1c16d646f2591e870f1c9774e to your computer and use it in GitHub Desktop.
Script to install youtube-dl on termux (android) along with clipboard support
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
termux-setup-storage && \ | |
YT_HOME="$HOME/storage/dcim" && \ | |
yes | apt update && \ | |
yes | apt full-upgrade && \ | |
pkg install -y python ffmpeg termux-api && \ | |
pip install --upgrade youtube-dl && \ | |
mkdir -p $YT_HOME && \ | |
mkdir -p $HOME/bin && \ | |
curl https://raw.githubusercontent.com/toxdes/python-scripts/master/youtube.py -o $HOME/../usr/bin/yt && \ | |
chmod a+rx $HOME/../usr/bin/yt && \ | |
echo 'python3 $HOME/../usr/bin/yt -q 1080p -l $1 -o $HOME/storage/dcim' > $HOME/bin/termux-url-opener && \ | |
chmod a+rx $HOME/bin/termux-url-opener && \ | |
echo "---------" | |
echo -e "\n\nInstalled Successfully. Restart termux,and you're good to go!\n\n" | |
echo -e "\nYou might need to give \"Draw over other apps\" permission to termux.\n" | |
echo "---------" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To use this script,
Installation (one time)
curl -L https://git.io/J0pdx | bash -
Usage
yt -h
and explore the cli to get more sophisticated options.