apache에서 mp4 스트리밍하기
##### 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