1 Star 0 Fork 0

pwl1987/ffmpegtoolkit

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
tools_libass.sh 620 Bytes
一键复制 编辑 原始数据 按行查看 历史
Ninetian Inc 提交于 2018-03-16 10:32 . Create tools_libass.sh
#!/bin/bash
# https://github.com/libass/libass
function _install_libass() {
clear
_file="libass-0.14.0.tar.gz"
_package="Libass"
echo -e $RED"Installation of $_package ....... started"$RESET
cd $SOURCE_DIR/
if [ -f "$_file" ]
then
echo "$_file found, Skip Downloads"
else
echo "$_file not found, Try Downloading......"
wget https://github.com/libass/libass/releases/download/0.14.0/$_file
fi
tar -xvzf $_file
cd libass-0.14.0/
./configure --prefix=$INSTALL_DIR
make -j $cpu
make install
echo -e $RED"Installation of $_package ....... Completed"$RESET
cd $SOURCE_DIR/
}
_install_libass
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/pwl1987/ffmpegtoolkit.git
[email protected]:pwl1987/ffmpegtoolkit.git
pwl1987
ffmpegtoolkit
ffmpegtoolkit
master

搜索帮助