SupeSite 5.5 / X-Space 3.0 视频环境完整安装手册
手册版本:1.0.1
适用系统:Linux
发布日期:2007-05-16
为了获得更好的线程支持以及更好的性能,我们推荐您使用基于 2.6 内核版本的 Linux 操作系统。
推荐操作系统:CentOS 4.4/5.0
本文在 CentOS 4.4/5.0、Red Hat Enterprise Linux AS4/5 上测试安装通过。
以下安装步骤以 CentOS 4.4 和 CentOS 5.0 操作系统为准。
一、前期准备
1. 所需的 RPM 包
gcc, gcc-c++, gcc-g77, glibc, glibc-devel, autoconf, automake, libtool, libtool-libs, freetype freetype-devel, libvorbis, libvorbis-devel, libogg, libogg-devel
上述 RPM 包可以通过 yum (仅限 CentOS Linux)自动安装,如果是 Red Hat Linux,请从安装光盘中提取这些 RPM 包手动安装。
2. 以 root 身份登录服务器
3. 创建软件包存放处理目录- # mkdir /usr/local/src/video
复制代码 二、安装播客视频/音频环境
1. 下载并解压 FFmpeg 集合包- # cd /usr/local/src/video
- # wget http://download.discuz.net/env/video/FFmpeg.tar.bz2
- # tar xjvf FFmpeg.tar.bz2
复制代码 2. 安装 MP3 编码器- # cd /usr/local/src/video/FFmpeg/lame-3.97
- # ./configure --prefix=/usr --enable-shared
- # make
- # make install
复制代码 3. 安装 XVid 编码器- # cd /usr/local/src/video
- # wget http://download.discuz.net/env/video/xvidcore-1.1.0.tar.gz
- # tar xzvf xvidcore-1.1.0.tar.gz
- # cd xvidcore-1.1.0/build/generic
- # ./configure --prefix=/usr
- # make
- # make install
复制代码 4. 安装 yasm 汇编器- # cd /usr/local/src/video
- # wget http://download.discuz.net/env/video/yasm-0.6.0.tar.gz
- # tar xzvf yasm-0.6.0.tar.gz
- # cd yasm-0.6.0
- # ./configure --prefix=/usr/local/yasm
- # make
- # make install
复制代码 将 yasm 加入系统环境变量- # export PATH="$PATH:/usr/local/yasm/bin"
复制代码 5. 安装 x264 编码器
*注:截至本文档发布日期止,x264 官方最新版存在问题,无法在 2 路以上 CPU 的 Intel 系统架构(如:双至强 CPU,四至强 CPU 服务器)中正常编译安装。Comsenz 为此特别对软件进行了修正,请下载 Comsenz 修正版的 x264 软件包!- # cd /usr/local/src/video
- # wget http://download.discuz.net/env/video/x264-linux-Comsenz.tar.bz2
- # tar xjvf x264-linux-Comsenz.tar.bz2
- # cd x264-linux-Comsenz
- # ./configure --prefix=/usr --enable-shared
- # make
- # make install
复制代码 6. 安装 LibDTS 编码器- # cd /usr/local/src/video/FFmpeg/libdts
- # ./configure --prefix=/usr
- # make
- # make install
复制代码 7. 安装 MPEG-4 AAC 编码器
*注:截至本文档发布日期止,MPEG-4 AAC 编码支持所需的 faad 和 faac 最新软件代码存在问题,无法正常编译安装成功。Comsenz 为此特别对软件进行了修正,请下载 Comsenz 修正版的 faad 和 faac!- # cd /usr/local/src/video
- # wget http://download.discuz.net/env/video/faac-1.25-Comsenz.tar.bz2
- # wget http://download.discuz.net/env/video/faad2-2.5-Comsenz.tar.bz2
复制代码 (1) 安装 faad- # tar xjvf faad2-2.5-Comsenz.tar.bz2
- # cd faad2-Comsenz
- # autoreconf -vif
- # ./configure --prefix=/usr --with-mp4v2 --enable-shared
- # make
- # make install
复制代码 (2) 安装 faac- # cd /usr/local/video/
- # tar xjvf faac-1.25-Comsenz.tar.bz2
- # cd faac-Comsenz
- # autoreconf -vif
- # ./configure --prefix=/usr --with-mp4v2 --enable-shared
- # make
- # make install
复制代码 8. 安装 FFmpeg 编码器- # cd /usr/local/src/video/FFmpeg/FFmpeg
- # ./configure \
- '--prefix=/usr' \
- '--enable-gpl' \
- '--enable-shared' \
- '--enable-mp3lame' \
- '--enable-amr_nb' \
- '--enable-amr_wb' \
- '--enable-amr_if2' \
- '--enable-libogg' \
- '--enable-vorbis' \
- '--enable-xvid' \
- '--enable-a52' \
- '--enable-a52bin' \
- '--enable-faadbin' \
- '--enable-dts' \
- '--enable-pp' \
- '--enable-faad' \
- '--enable-faac' \
- '--enable-x264' \
- '--enable-pthreads' \
- '--disable-ffserver' \
- '--disable-ffplay'
- # make
- # make install
复制代码 至此,博客视频/音频转码支持安装完毕!
三、设定视频转换计划任务
1. 下载视频文件转换脚本程序- # cd /usr/local/src/video
- # wget http://download.discuz.net/env/video/convert-linux.zip
复制代码 2. 准备脚本程序- # unzip convert-linux.zip
- # cp convert /usr/local/sbin/convert_av.sh
- # chmod 777 /usr/local/sbin/convert_av.sh
复制代码 3. 编辑配置 convert_av.sh- # vi /usr/local/sbin/convert_av.sh
复制代码 将 STIEROOT="/var/html/www/wwroot/space" 修改为实际的 SupeSite 路径,如:/var/www/html/SupeSite
4. 设定计划任务进入 cron 计划任务编辑界面,在最后添加一行:- */10 * * * * /usr/local/sbin/convert_av.sh > /dev/null 2>&1
复制代码 其中 10 表示每 10 分钟执行一次脚本程序,用户可根据实际情况更改执行间隔。
四、在线视频录制环境
1. 安装 JDK- # cd /usr/local/src/video
- # wget http://download.discuz.net/env/video/jdk-6u1-linux-i586-rpm.bin
- # chmod 777 jdk-6u1-linux-i586-rpm.bin
- # ./jdk-6u1-linux-i586-rpm.bin
复制代码 3. 安装 Apache ANT- # cd /usr/local/src/video
- # http://download.discuz.net/env/video/apache-ant-1.7.0-bin.tar.gz
- # tar xzvf apache-ant-1.7.0-bin.tar.gz
- # mv apache-ant-1.7.0 /usr/local/ant
复制代码 将 Apache ant 加入系统环境变量:- # export PATH="$PATH:/usr/local/ant/bin"
复制代码 4. 安装 RED5 在线视频录制系统- # wget http://download.discuz.net/env/video/red5-0.6.tar.gz
- # tar xzvf red5-0.6.tar.gz
- # mv red5-0.6 /usr/local/red5
- # cd /usr/local/red5
- # vi build.properties
复制代码 将 java.target_version 修改为 1.5 ( java.target_version=1.5 )5. 下载安装在线录制程序- # cd /usr/local/src/video
- # wget http://download.discuz.net/env/video/online.zip
- # unzip online.zip
- # mv online /usr/local/red5/webapps/
- # chmod -R 777 /usr/local/red5/webapps/online
复制代码 6. 启动 RED5- # cd /usr/local/red5
- # ./red5.sh &
复制代码 7. 使 RED5 随系统一起启动- # echo 'cd /usr/local/red5' >> /etc/rc.local
- # echo './red5.sh &' >> /etc/rc.local
复制代码 最后,将所需的程序路径写入系统环境变量- # echo 'export PATH="$PATH:/usr/local/yasm/bin:/usr/local/ant/bin"' >> /etc/profile
复制代码 至此,视频转换支持以及视频在线录制支持已经全部部署完毕。 |