OS: OpenSUSE 11.2
參考來源: Mod-H264-Streaming-Apache-Version2 – h264 (本機備份)
yast 補上
- gcc
- make
- apache2-devel
1 2 3 4 5 6 7 |
cd ~ 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 make sudo make install |
vi /etc/apache/httpd.conf
在最後加上
1 2 |
LoadModule h264_streaming_module /usr/lib/apache2/mod_h264_streaming.so AddHandler h264-streaming.extensions .mp4 |
/etc/rc.d/apache2 restart
額外補充
查詢已知指令在哪一個套件
1 |
rpm -qf /usr/sbin/apxs2 |
--
CentOS 7
補上需要的套件指令
1 |
yum install wget httpd-devel |
編輯 httpd.conf
1 2 3 4 5 |
vi /etc/httpd/conf/httpd.conf LoadModule h264_streaming_module /usr/lib64/httpd/modules/mod_h264_streaming.so AddHandler h264-streaming.extensions .mp4 |
重新啟動 httpd service
1 |
systemctl restart httpd |
--
1,437 total views, 1 views today