Last active
June 21, 2022 17:35
-
-
Save BigAlRender/9ac9306b08881f05d4365e128fe36b05 to your computer and use it in GitHub Desktop.
Install yt-dlp on Render Native Env
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 | |
# exit on error | |
set -o errexit | |
# Check build cache | |
if [[ ! -d $XDG_CACHE_HOME/yt-dlp ]]; then | |
echo "...Downloading yt-dlp" | |
cd $XDG_CACHE_HOME | |
mkdir -p ./yt-dlp | |
cd ./yt-dlp | |
wget $(curl -s https://api.github.com/repos/yt-dlp/yt-dlp/releases/latest | jq -r '.assets[2] | .browser_download_url') | |
chmod a+rx yt-dlp | |
cd $HOME/project/src # Make sure we return to where we were | |
else | |
echo "...Using yt-dlp from build cache" | |
fi | |
mkdir -p $HOME/project/src/yt-dlp | |
cp $XDG_CACHE_HOME/yt-dlp/yt-dlp $HOME/project/src/yt-dlp/ | |
# Add the rest of your build commands | |
# bundle install, etc. | |
# Either reference the binary directly: | |
# $HOME/project/src/yt-dlp/yt-dlp | |
# | |
# OR | |
# | |
# add it to the PATH as part of the start command/script: | |
# export PATH="$PATH:$HOME/project/src/yt-dlp" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment