php 第2页

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年前
07850

怎么使用反代自建不用备案的cdn加速?

怎么使用反代自建不用备案的cdn加速?-熊大百宝箱
  你需要   1个起步,到多个机器 做 反代的前端机 还有一个被反代的  宿主机  ( 所有 数据,比如web mysql 之类的 都在 一个机器上) 我们使用  www.123.com   为例 你先需要 ...
ForDream的头像-熊大百宝箱ForDream3年前
06580

邀请码生成

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

IMAGE_TO_FPDF

IMAGE_TO_FPDF-熊大百宝箱
$true_array_image = CommonUtils::to_pdf_image_handle($image_array,$max_pt,'/saved_attachments/',$to_pdf_save_dir,$the_id,$postfix_str); $status_code =  CommonUtils::generate_p...
ForDream的头像-熊大百宝箱ForDream4年前
05840

PHP图片压缩

PHP图片压缩-熊大百宝箱
<?php /**  * Created by PhpStorm.  * User: 20170720李雁飞  * Date: 2018/9/24  * Time: 0:10  */ class ImgCompress {     static private $_instance = null; ...
ForDream的头像-熊大百宝箱ForDream4年前
05230

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

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

php7 怎么禁止缓存

php7 怎么禁止缓存-熊大百宝箱
本文操作环境:Windows7系统、PHP7.1版、DELL G3电脑 php7 怎么禁止缓存? php7关闭缓存、禁用缓存 找到安装目录下的php.ini文件 比如,/usr/local/php7/etc/php.ini 将如下两行的1改为0: [opc...
ForDream的头像-熊大百宝箱ForDream3年前
04930