- 博客(7)
- 收藏
- 关注
转载 使用ffmpeg将mp4切片成ts slice 并生成m3u8命令
使用ffmpeg将mp4切成ts片段的时候会碰到一个问题,就是生成的m3u8文件里只有最后的五个片段的信息。这是因为ffmpeg 默认的list size 为5,所以只获得最后的5个片段。为了解决这个问题,需要指定参数-hls_list_size 0,这样就能包含所有的片段ffmpeg -i input.mp4 -profile:v baseline -level 3.0 -s ...
2016-09-06 16:33:00 1557
转载 live555编译:增加CMake支持
最近研究live555,看了网上的编译方法太过麻烦,所以自己给它增加了CMake构建工程的方法,以方便大家参考学习。大家可以按照以下步骤来做,或者直接从github下载我上传的版本https://github.com/JeroZeng/live555下载安装cmake:http://www.cmake.org下载源码:http://www.live555.com/live...
2015-09-05 17:58:00 323
转载 C代码调用汇编&使用指令集优化
最近研究x264汇编代码,感觉使用到的优化思想和手法非常不错,在此写一个demon来记录我学习过程从搭建环境开始 x264使用汇编优化的思想是将汇编代码编译到一个静态库里,供C代码调用,所以首先需要构建一个汇编函数得静态库。因为手动配置使用yasm来编译汇编文件,并生成一个lib相当麻烦,我选择的是使用cmake来构建。 在demon里有一个sum.asm的汇...
2015-09-05 13:36:00 248
转载 leetcode速度才是王道 2. Add Two Numbers
2. Add Two NumbersYou are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two number...
2015-07-22 21:57:00 114
转载 leetcode速度才是王道 1.Two Sum
1. Two SumGiven an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two numbers such that they add up to ...
2015-07-05 18:21:00 182
转载 sed批量修改文件中的字符串
如果需要批量将文件夹dir下所有文件中的字符串“test”替换为“TEST”,可以这麽写:sed -i "s/test/TEST/g" `grep test -rl /dir`其中使用了两条命令:(1) grep:在dir文件夹中搜索字符串test,注意这里不需要引号 参数-r表示搜索子目录 参数-l表示输出匹配文件名以及其路径(2)sed s/test...
2015-05-25 13:57:00 107
转载 _BitScanForward, _BitScanForward64
_BitScanForward(64)的使用得include头文件intrin.hunsigned char _BitScanForward( unsigned long * Index, unsigned long Mask);unsigned char_BitScanForward64( unsigned long * Index, unsig...
2014-12-01 11:59:00 1368
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人