I converted an MP4 to FLV and am trying to stream the FLV. Using the setup wizard, here is the code:
<embed
src="http://accidentalessayist.net/av/player.swf"
width="480"
height="272"
bgcolor="undefined"
allowscriptaccess="always"
allowfullscreen="true"
flashvars="file=two-min-test.flv&title=Test&streamer=http://accidentalessayist.net/av/xmoov.php"
/>
I copied and pasted Klink's xmoov.php from a previos thread, and changed the parms as so:
// points to server root
define('XMOOV_PATH_ROOT', 'av/');
//
// points to the folder containing the video files.
define('XMOOV_PATH_FILES', 'wp-content/uploads/');
Player spins, but will not play.
I am not sure if it is because my config is worng (bad path or somethin) in xmoov, or maybe I need to do some kind of flv injection (sorry for the noob questions).
Any ideas?
j9

Call the xmoov script in your browser
http://accidentalessayist.net/av/xmoov.php?file=two-min-test.flv&start=123456Then fix this error
<b>ERROR:</b> xmoov-php could not find (av/wp-content/uploads/two-min-test.flv) please check your settings.The xmoov script should be in the same directory as the video files or the video files should be in a directory (uploads) that is below the directory that the xmoov script is in, so
// points to server rootdefine('XMOOV_PATH_ROOT', '');
//
// points to the folder containing the video files.
define('XMOOV_PATH_FILES', './uploads/');