使用tad_player模組播放影片,FLV格式在ipad上無法播放,改以H.264/MPEG-4格式就可以播放,但PC上卻不能以串流方式播放,必須全部下載後才開始播放,在網路上搜尋到解決的方法,就是就是在Apache上加裝H264模組。
1.到 http://h264.code-shop.com/ 網站下載apache_mod_h264_streaming-2.2.7.tar.gz
#wget http://h264.code-shop.com/download/apache_mod_h264_streaming-2.2.7.tar
#wget http://h264.code-shop.com/download/apache_mod_h264_streaming-2.2.7.tar
2.安裝:
#tar -zxvf apache_mod_h264_streaming-2.2.7.tar.gz
#./configure
#make
#make install
#tar -zxvf apache_mod_h264_streaming-2.2.7.tar.gz
#./configure
#make
#make install
3.修改apache設定檔,加入
LoadModule h264_streaming_module /usr/local/libexec/apache22/mod_h264_streaming.so
AddHandler h264-streaming.extensions .mp4
LoadModule h264_streaming_module /usr/local/libexec/apache22/mod_h264_streaming.so
AddHandler h264-streaming.extensions .mp4
4.重新啟動Apache