PHP代码 第2页

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

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

ffmpeg相关技术

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

Nginx的启动、停止与重启

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

邀请码生成

邀请码生成-熊大百宝箱
function createCode($user_id) {     static $source_string = 'E5FCDG3HQA4B1NOPIJ2RSTUV67MWX89KLYZ';     $num = $user_id;     $code = '';     while ( $num...
ForDream的头像-熊大百宝箱ForDream4年前
06440

PHP过滤XSS

PHP过滤XSS-熊大百宝箱
function remove_xss($val) { $val = preg_replace('/([\x00-\x08,\x0b-\x0c,\x0e-\x19])/', '', $val); $search = 'abcdefghijklmnopqrstuvwxyz'; $search .= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'; $...
ForDream的头像-熊大百宝箱ForDream4年前
010270