'mp4'에 해당되는 글 1건

  1. 2014.03.07 apache에서 mp4 스트리밍하기
Linux2014. 3. 7. 14:08



##### APM 컴파일 설치시  #####

cd /usr/local/src
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='/usr/local/apache/bin/apxs'
make
make install

# so파일 있는지 확인
ll /usr/local/apache/modules/mod_h264_streaming.so

 

# httpd.conf 파일 수정 #
LoadModule h264_streaming_module modules/mod_h264_streaming.so
AddHandler h264-streaming.extensions .mp4

 

 

 

##### APM rpm 설치시 #####
cd /usr/local/src
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
find / -name "*apxs*"
./configure --with-apxs='/usr/sbin/apxs'
make
make install
# so파일 있는지 확인
ll /etc/httpd/modules/mod_h264_streaming.so


# httpd.conf 파일 수정 #
LoadModule h264_streaming_module modules/mod_h264_streaming.so
AddHandler h264-streaming.extensions .mp4

'Linux' 카테고리의 다른 글

CentOS7 minimal 설치 후 초기 설정  (0) 2015.12.10
NSF 설치 및 설정  (0) 2015.06.24
SSL 인증서 비밀번호 제거하는 방법  (0) 2013.06.07
PHP5 설치  (0) 2010.10.28
아파치 설치  (0) 2010.10.28
Posted by requireme