OS X 10.4 intel Installation
From JinzoraWiki
A few points before i forget what i did
I installed Marc Liyiniages PHP 5 as it has GD support built in. http://www.entropy.ch/software/macosx/php/
Standard instructions for Jinzora install were fine
To get .m4a streaming I had to substitute faad for mplayer. This also meant a bit of messing around with resample.php to add -b only when resampling is selected.
Download, Compile and install lame http://lame.sourceforge.net/index.php
Download, Compile and install faad http://www.audiocoding.com/faad2.html
you could probably get these using darwinports in which case the paths would be something like /opt/usr/faad but it was a straight forward compile
./configure
make
make install
and for faad
./bootstrap
./configure
make
make install
edit your settings.php file so that these lines look like this..
$path_to_mplayer = "/usr/local/bin/faad";
$mplayer_opts = "-w -f 2";
$lame_cmd = "/usr/local/bin/lame -x -m s -r -S -q 5 -s 44.1 -v ";
$always_resample = "flac|mpc|wv|wav|shn|ape|ofr|ogg|wma|m4a|mp4";
I also edited resample.php to add -b only when a resampling rate is selected.
The piece I changed is surrounded by slashes.
// Now let's add the proper options to the lame command
/////////////////////////////////////////////////////////////
//editd to only pass the -b when $resample is set
if ($resample > 10){
$lame_cmd .= '-b '. $resample . ' -';}
else
{$lame_cmd .= $resample . ' -';}
/////////////////////////////////////////////////////////////
//Now let's figure out the file type
$extArr = explode(".",$file);
$ext = $extArr[count($extArr)-1];
