shell脚本
hahahawjl
这个作者很懒,什么都没留下…
展开
-
ffmpeg linux命令行 虚拟机centos7.6
ffmpeg linux命令行 虚拟机centos7.6#!/bin/bash#根据这个网址(https://www.johnvansickle.com/ffmpeg/faq/)安装ffmpeg环境,因为需要多种的编码器。这个可以满足现在的这个脚本original=$1fenbianlv=$2crf=$3#文件路径 影片名字/4k/影片名字.mp4 | 影片名字/1080/影片名字....原创 2019-06-05 14:23:16 · 252 阅读 · 0 评论 -
rsync+inotify 安装部署
#!/bin/bash#-t指定SSH密钥的算法为RSA算法,-N设置密码为空,-f指定生成的密钥文件存放位置rm -rf ~/.ssh/{known_hosts,id_rsa*}ssh-keygen -t rsa -n ‘’ -f ~/.ssh/id_rsa #生成密钥,一路回车yum -y install expect #安装expec...原创 2019-06-05 14:33:13 · 344 阅读 · 0 评论 -
Centos NGINX+PHP7.1 一键部署
Centos nginx1.14.2+php7.1.29 一键部署#!/bin/bash#Configuration file path(配置文件路径)NGINX_CFP=/usr/local/nginx/conf/nginx.confNGINX_BAK=/usr/local/nginx/conf/nginx.conf.bakPHP_CFP=/usr/local/php/etc/php...原创 2019-06-21 11:24:59 · 1174 阅读 · 0 评论 -
利用ffmpeg加水印
#!/bin/bash-i 文件名字-movie=水印图片scale= 水印长度*水印的高度#左上角 10:10#右上角 main_w-overlay_w-10:10#左下角 10:main_h-overlay_h-10#右下角 main_w-overlay_w-10 : main_h-overlay_h-10read -p “请输入文件名:” $1read -p “请输入水印图...原创 2019-06-21 11:41:09 · 635 阅读 · 0 评论