panjianm 发表于 2018-11-22 13:32:09

Apache添加MP4流媒体服务扩展

  #安装库
  yum -y install apache2-threaded-dev
  #下载软件包
  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
  #编译安装软件包
  cdmod_h264_streaming-2.2.7
  ./configure --with-apxs=`which apxs2`
  make
  make install
  #编辑apache设置
  vim /etc/httpd/conf/httpd.conf
  #添加下面内容
  LoadModule h264_streaming_module /usr/lib64/httpd/modules/mod_h264_streaming.so
  AddHandler h264-streaming.extensions .mp4
  #重启
  apachectlrestart

页: [1]
查看完整版本: Apache添加MP4流媒体服务扩展