xiaomusic/install_dependencies.sh

18 lines
400 B
Bash
Raw Normal View History

2023-10-14 11:50:32 +00:00
#!/bin/bash
# yt-dlp 依赖 ffmpeg
# https://github.com/yt-dlp/yt-dlp#dependencies
2023-10-15 02:58:53 +00:00
# 判断系统架构
arch=$(arch)
pkg=ffmpeg-master-latest-linuxarm64-gpl
if [[ "${arch}" == "x86_64" ]]; then
pkg=ffmpeg-master-latest-linux64-gpl
fi
#export ALL_PROXY=http://192.168.2.5:8080
wget https://github.com/yt-dlp/FFmpeg-Builds/releases/download/latest/$pkg.tar.xz
tar -xvJf $pkg.tar.xz
mv $pkg ffmpeg