Nanu 发表于: 2007-5-16 10:53 来源: SupeSite/X-Space官方站
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 包
2. 以 root 身份登录服务器
3. 创建软件包存放处理目录
1. 下载并解压 FFmpeg 集合包
# wget http://download.discuz.net/env/video/FFmpeg.tar.bz2
# tar xjvf FFmpeg.tar.bz22. 安装 MP3 编码器
# ./configure --prefix=/usr --enable-shared
# make
# make install3. 安装 XVid 编码器
# 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 install4. 安装 yasm 汇编器
# 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 加入系统环境变量
*注: 截至本文档发布日期止,x264 官方最新版存在问题,无法在 2 路以上 CPU 的 Intel 系统架构(如:双至强 CPU,四至强 CPU 服务器)中正常编译安装。Comsenz 为此特别对软件进行了修正,请下载 Comsenz 修正版的 x264 软件包!
# 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 install6. 安装 LibDTS 编码器
# ./configure --prefix=/usr
# make
# make install7. 安装 MPEG-4 AAC 编码器
*注:截至本文档发布日期止,MPEG-4 AAC 编码支持所需的 faad 和 faac 最新软件代码存在问题,无法正常编译安装成功。Comsenz 为此特别对软件进行了修正,请下载 Comsenz 修正版的 faad 和 faac!
# 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
# cd faad2-Comsenz
# autoreconf -vif
# ./configure --prefix=/usr --with-mp4v2 --enable-shared
# make
# make install(2) 安装 faac
# tar xjvf faac-1.25-Comsenz.tar.bz2
# cd faac-Comsenz
# autoreconf -vif
# ./configure --prefix=/usr --with-mp4v2 --enable-shared
# make
# make install8. 安装 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. 下载视频文件转换脚本程序
# wget http://download.discuz.net/env/video/convert-linux.zip2. 准备脚本程序
# cp convert /usr/local/sbin/convert_av.sh
# chmod 777 /usr/local/sbin/convert_av.sh3. 编辑配置 convert_av.sh
4. 设定计划任务
四、在线视频录制环境
1. 安装 JDK
# 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.bin3. 安装 Apache ANT
# 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 加入系统环境变量:
# 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 )
# 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/online6. 启动 RED5
# ./red5.sh &7. 使 RED5 随系统一起启动
# echo './red5.sh &' >> /etc/rc.local最后,将所需的程序路径写入系统环境变量
手册版本: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 包
QUOTE:
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. 创建软件包存放处理目录
CODE:
# mkdir /usr/local/src/video 二、安装播客视频/音频环境1. 下载并解压 FFmpeg 集合包
CODE:
# cd /usr/local/src/video# wget http://download.discuz.net/env/video/FFmpeg.tar.bz2
# tar xjvf FFmpeg.tar.bz22. 安装 MP3 编码器
CODE:
# cd /usr/local/src/video/FFmpeg/lame-3.97# ./configure --prefix=/usr --enable-shared
# make
# make install3. 安装 XVid 编码器
CODE:
# 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 install4. 安装 yasm 汇编器
CODE:
# 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 加入系统环境变量
CODE:
# export PATH="$PATH:/usr/local/yasm/bin"5. 安装 x264 编码器*注: 截至本文档发布日期止,x264 官方最新版存在问题,无法在 2 路以上 CPU 的 Intel 系统架构(如:双至强 CPU,四至强 CPU 服务器)中正常编译安装。Comsenz 为此特别对软件进行了修正,请下载 Comsenz 修正版的 x264 软件包!
CODE:
# 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 install6. 安装 LibDTS 编码器
CODE:
# cd /usr/local/src/video/FFmpeg/libdts# ./configure --prefix=/usr
# make
# make install7. 安装 MPEG-4 AAC 编码器
*注:截至本文档发布日期止,MPEG-4 AAC 编码支持所需的 faad 和 faac 最新软件代码存在问题,无法正常编译安装成功。Comsenz 为此特别对软件进行了修正,请下载 Comsenz 修正版的 faad 和 faac!
CODE:
# 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
CODE:
# 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
CODE:
# 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 install8. 安装 FFmpeg 编码器
CODE:
# 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. 下载视频文件转换脚本程序
CODE:
# cd /usr/local/src/video# wget http://download.discuz.net/env/video/convert-linux.zip2. 准备脚本程序
CODE:
# unzip convert-linux.zip# cp convert /usr/local/sbin/convert_av.sh
# chmod 777 /usr/local/sbin/convert_av.sh3. 编辑配置 convert_av.sh
CODE:
# vi /usr/local/sbin/convert_av.sh将 STIEROOT="/var/html/www/wwroot/space" 修改为实际的 SupeSite 路径,如:/var/www/html/SupeSite4. 设定计划任务
CODE:
# crontab -u root -e进入 cron 计划任务编辑界面,在最后添加一行:CODE:
*/10 * * * * /usr/local/sbin/convert_av.sh > /dev/null 2>&1其中 10 表示每 10 分钟执行一次脚本程序,用户可根据实际情况更改执行间隔。四、在线视频录制环境
1. 安装 JDK
CODE:
# 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.bin3. 安装 Apache ANT
CODE:
# 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 加入系统环境变量:
CODE:
# export PATH="$PATH:/usr/local/ant/bin"4. 安装 RED5 在线视频录制系统CODE:
# 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 )
CODE:
# ant5. 下载安装在线录制程序CODE:
# 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/online6. 启动 RED5
CODE:
# cd /usr/local/red5# ./red5.sh &7. 使 RED5 随系统一起启动
CODE:
# echo 'cd /usr/local/red5' >> /etc/rc.local# echo './red5.sh &' >> /etc/rc.local最后,将所需的程序路径写入系统环境变量
CODE:
# echo 'export PATH="$PATH:/usr/local/yasm/bin:/usr/local/ant/bin"' >> /etc/profile至此,视频转换支持以及视频在线录制支持已经全部部署完毕。