Installing H264 Streaming Module

We need to install the H264 Streaming Module for Apache in our InterWorx server.

I was wondering if anybody has done this, and if there is a special procedure to follow for installing in InterWorxs.

Any help on this issue will be greatly appreciated.

Regards,

Rodrigo

Hi, Rodrigo.

The H264 streaming module works just fine, actually. Here’s how I did it.


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

After the install process is done, you need to edit /etc/httpd/conf/httpd.conf with your favorite text editor and add the following two lines at the bottom of the module loading sequence:


LoadModule h264_streaming_module /usr/lib/httpd/modules/mod_h264_streaming.so
AddHandler h264-streaming.extensions .mp4

Write the file, exit, and


service httpd restart

It should be up and running after that.

Hi Rodrigo,

Installing apache modules is like installing them on a server without interworx. You’d just place the module in the correct directory (usually /usr/lib64/httpd/modules/ or /usr/lib/httpd/modules/ depending on architecture) and then add the module entry to your /etc/httpd/conf/httpd.conf. Just search for the LoadModule section and add it there (line 192 in my config file).