灌溉梦想,记录脚步
« »

为Apache添加MP4扩展

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#安装库
$sudo apt-get install apache2-threaded-dev 
 
#下载软件包
$cd ~  
$wget http://h264.code-shop.com/download/apache_mod_h264_streaming-2.2.7.tar.gz  
$tar -zxvf apache_mod_h264_streaming-2.2.7.tar.gz  
 
#编译安装软件包
$cd ~/mod_h264_streaming-2.2.7  
$./configure --with-apxs=`which apxs2` 
$make  
$sudo make install  
 
#编辑apache设置
$sudo vim /etc/apache2/httpd.conf  
 
#添加下面内容
LoadModule h264_streaming_module /usr/lib/apache2/modules/mod_h264_streaming.so 
AddHandler h264-streaming.extensions .mp4 
 
#重启
$sudo /etc/init.d/apache2 restart

日志信息 »

该日志于2010-07-20 12:13由 kevin 发表在技术合集分类下, 你可以发表评论。除了可以将这个日志以保留源地址及作者的情况下引用到你的网站或博客,还可以通过RSS 2.0订阅这个日志的所有评论。

一条评论

  1. vuitton说道:

    so good!

发表回复