ffmepg合并视频

ffmpeg -i 1.f4v -vcodec copy -acodec copy -vbsf h264_mp4toannexb 1.ts

ffmpeg -i 2.f4v -vcodec copy -acodec copy -vbsf h264_mp4toannexb 2.ts

ffmpeg -i 3.f4v -vcodec copy -acodec copy -vbsf h264_mp4toannexb 3.ts

ffmpeg -i 4.f4v -vcodec copy -acodec copy -vbsf h264_mp4toannexb 4.ts

ffmpeg -i "concat:1.ts|2.ts|3.ts|4.ts" -acodec copy -vcodec copy -absf aac_adtstoasc out.mp4

 

网站截图的实现

ImgVer
业务很简单,就是把网页转成图片保存下来。之前也用过html2canvas来实现这一功能,测试下来除了发现截图糊了一点外倒也没什么毛病,但是这次实现完在Chrome上测试时却出现了网络错误的提示(大概是图片太大的缘故orz),于是想到走后台来实现这一功能,找了一下发现以下方案,大概就是先组装好这个页面来让WebBrowser来访问,最后把整个WebBrowser界面以字节流的方式输出给用户浏览器。具体代码如下: 继续阅读网站截图的实现

一路向北

后视镜里的世界 越来越远的道别
你转身向背 侧脸还是很美
我用眼光去追 竟听见你的泪
在车窗外面徘徊 是我错失的机会
你站的方位 跟我中间隔着泪
街景一直在后退 你的崩溃在窗外零碎
我一路向北 离开有你的季节
你说你好累 已无法再爱上谁
风在山路吹 过往的画面全都是我不对
细数惭愧 我伤你几回

继续阅读一路向北

Centos7下的LNMP源码安装

Part1:Install nginx

#为了源码能正常的编译运行先安装开发工具
yum group install “Development Tools”
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.39.tar.gz
tar xvf pcre-8.39.tar.gz
cd pcre-8.39
./configure
make
make install

wget http://nginx.org/download/nginx-1.6.3.tar.gz
tar xvf nginx-1.6.3.tar.gz
cd nginx-1.6.3
[root@instance-1 nginx-1.6.3]# ./configure –prefix=/usr/local/nginx
#检查系统环境:
./configure: error: the HTTP gzip module requires the zlib library.
You can either disable the module by using –without-http_gzip_module
option, or install the zlib library into the system, or build the zlib library
statically from the source with nginx by using –with-zlib= option.

yum install -wget http://jp2.php.net/distributions/php-7.0.12.tar.gzy zlib-devel
make
make install
继续阅读Centos7下的LNMP源码安装

用nginx做静态文件服务器

welcometongixn

安装
1.删除系统自带的nginx
apt-get remove nginx

2.查看残留
which nginx

3.下载源码
wget http://nginx.org/download/
./configure
make
make install
在这里由于我在remove nginx的时候一并把一些依赖的包去除了所以报错:
error: the HTTP rewrite module requires the PCRE library

解决方法:
需要安装pcre包。
sudo apt-get update
sudo apt-get install libpcre3 libpcre3-dev
你可能还需要安装
sudo apt-get install openssl libssl-dev

需要重新./configure
然后再make
make install

启动

安装成功之后,nginx放置在/usr/local/nginx目录下,主要的配置文件为conf目录下的nginx.conf,nginx的启动文件在sbin目录下的nginx文件。
$cd /usr/local/nginx
$sbin/nginx
附:在线安装
$apt-get remove nginx
$which nginx
$apt-get install nginx
$sudo /etc/init.d/nginx start

配置

server {
        client_max_body_size 4G;
        listen  80;  ## listen for ipv4; this line is default and implied
        server_name static.test.sdk.iwplay.com.tw;
        root /home/mini/Sync;
     location / {
          autoindex on; //显示索引
         autoindex_exact_size on; //显示大小
         autoindex_localtime on;   //显示时间
        }

}

参考:http://www.cnblogs.com/languoliang/archive/2013/04/01/nginx.html