ForDream的头像-熊大百宝箱
管理员
这家伙很懒,什么都没有写...

centos 6.5 下安装ffmpeg,并实现自动化转换 (亲测)

centos 6.5 下安装ffmpeg,并实现自动化转换 (亲测)-熊大百宝箱
yasm是一个完全重写的NASM汇编。目前,它支持x86和AMD64指令集。接受NASM和GNU汇编器(gas)语法,产出二进制,ELF32,ELF64,COFF,Mach-O的(32和64),RDOFF2,的Win32和Win64对象的格式,并...
4年前
05000

阿里云短信服务API类

阿里云短信服务API类-熊大百宝箱
<?php /**  *  ==================================================================  *        文 件 名: DySms.php  *        概    要: 阿里云短信服务API...
4年前
05150

Linux使用 tar命令-g参数进行增量+差异备份、还原文件

Linux使用 tar命令-g参数进行增量+差异备份、还原文件-熊大百宝箱
完整备份: 建立测试路径与档案 mkdir test touch test/{a,b,c} 在test下生成三个文件 执行完整备份 tar -g snapshot -zcf backup_full.tar.gz test 查看 tarball 内容 tar ztf backup_full.tar....
4年前
05700

Centos 7 安装 Wkhtmltopdf 实现网页快照

Centos 7 安装 Wkhtmltopdf 实现网页快照-熊大百宝箱
可使用yum安装: yum install wkhtmltopdf 不过由于CentOS的yum库里的wkhtmltopdf版本过旧,而新版的不再依赖X server,会导致 wkhtmltopdf: cannot connect to X server 这样的报错。 卸载后使...
4年前
07290

redis rdb数据库恢复

redis rdb数据库恢复-熊大百宝箱
redis  恢复     如果appendonly 是关闭的 不使用aof  所以只有前面5个步骤 1.编辑 vim etc/redis.conf 2. 搜索appendonly 改成 no   redis关闭aof 3.把rdb文件上传到redis目录 4.pkill ...
4年前
05440

VIM常用命令

VIM常用命令-熊大百宝箱
VIM常用命令 :set number 行数 :100跳转到100行 dd删除当前这行 u撤销
4年前
05200

邀请码生成

邀请码生成-熊大百宝箱
function createCode($user_id) {     static $source_string = 'E5FCDG3HQA4B1NOPIJ2RSTUV67MWX89KLYZ';     $num = $user_id;     $code = '';     while ( $num...
4年前
06590

Nginx的启动、停止与重启

Nginx的启动、停止与重启-熊大百宝箱
启动  启动代码格式:nginx安装目录地址 -c nginx配置文件地址 例如: [root@LinuxServer sbin]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf   停止  nginx的停...
4年前
07050

ffmpeg相关技术

ffmpeg相关技术-熊大百宝箱
视频合并  FFmpeg concat 分离器 file 'input1.mkv' file 'input2.mkv' file 'input3.mkv' 然后: ffmpeg -f concat -i filelist.txt -c copy output.mkv 1. 原理 比如我有三个视频...
4年前
08580

ffmpeg过滤视频,剔除音频的操作

ffmpeg过滤视频,剔除音频的操作-熊大百宝箱
ffprobe -v quiet -print_format json -show_format -show_streams 1.mp4 {     'streams': [         {             'index': 0,             '...
4年前
05570