欢迎访问我的独立博客
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 67 下一页
摘要: typedef struct x264_param_t { /* CPU 标志位 */ unsigned int cpu; int i_threads; /* 并行编码多帧 */ int b_deterministic; /*是否允许非确定性时线程优化*/ int i_sync_lookahead; 阅读全文
posted @ 2017-08-21 16:42 github.com/starRTC 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 源代码位于“libavcodec/libx264.c”中。正是有了这部分代码,使得FFmpeg可以调用libx264编码H.264视频。 从图中可以看出,libx264对应的AVCodec结构体ff_libx264_encoder中设定编码器初始化函数是X264_init(),编码一帧数据的函数是X 阅读全文
posted @ 2017-08-21 16:07 github.com/starRTC 阅读(996) 评论(0) 推荐(0) 编辑
摘要: 函数背景色 函数在图中以方框的形式表现出来。不同的背景色标志了该函数不同的作用: 白色背景的函数:不加区分的普通内部函数。 浅红背景的函数:libx264类库的接口函数(API)。 粉红色背景函数:滤波函数(Filter)。用于环路滤波,半像素插值,SSIM/PSNR的计算。 黄色背景函数:分析函数 阅读全文
posted @ 2017-08-21 15:30 github.com/starRTC 阅读(491) 评论(0) 推荐(0) 编辑
摘要: x264是一个开源的H.264视频编码器库。是目前最好的有损视频编码器。 基本用法是 x264 [options]-o outfile infile x264 [options]-o outfile infile 主页: http://www.videolan.org/developers/x264 阅读全文
posted @ 2017-08-21 14:07 github.com/starRTC 阅读(2875) 评论(0) 推荐(0) 编辑
摘要: H.264是视频编码标准。 X264是它的开源实现,是视频编码器。 目录 [隐藏] 目录 1 编码器特性2 输入输出文件类型2.1 输入2.2 输出3 preset和tune系统3.1 --preset3.2 --tune4 码率控制4.1 crf4.2 2pass bitrate5 艺搜参考 2. 阅读全文
posted @ 2017-08-21 14:02 github.com/starRTC 阅读(504) 评论(0) 推荐(0) 编辑
摘要: WordPress在用。 You'll find plenty more to play with in the examples folder. 中文乱码问题: $mail->CharSet = "utf-8"; //设置字符集编码 SMTP ERROR: Password command fai 阅读全文
posted @ 2017-08-18 17:40 github.com/starRTC 阅读(278) 评论(0) 推荐(0) 编辑
摘要: redis需要先安装 需要通过 Composer 安装 predis/predis 扩展包 (~1.0) 或者使用 PECL 安装 PhpRedis PHP 拓展。 composer require predis/predis redis的配置在cache.php和database.php里面都有 阅读全文
posted @ 2017-08-18 12:36 github.com/starRTC 阅读(611) 评论(0) 推荐(0) 编辑
摘要: php artisan list php artisan help migrate Tinker 让你可以在命令行中与 Laravel 应用进行交互php artisan tinker 在routes/console.php里面可以加闭包命令 Artisan::command('build {pro 阅读全文
posted @ 2017-08-17 18:37 github.com/starRTC 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 本文目标:如何创建一个高质量的H.264视频x264 是一个 H.264 编码器.通常有2种码率控制(rate control)模式:Constant Rate Factor (CRF) or Two-Pass ABR码率控制是一种决定为每一帧分配多少比特数bits的方法,它将决定文件的大小和质量的 阅读全文
posted @ 2017-08-17 15:11 github.com/starRTC 阅读(1990) 评论(0) 推荐(0) 编辑
摘要: 读写分离之多个读? 有 'host' => $readHosts[array_rand($readHosts)], 上面的好像有缓存问题php artisan config:cache https://www.neontsunami.com/posts/multiple-database-read- 阅读全文
posted @ 2017-08-17 13:14 github.com/starRTC 阅读(246) 评论(0) 推荐(0) 编辑
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 67 下一页