I'm trying to make a front end for all my music and video files on a spare PC I have but have come up against a bit of a road block. I originally wanted to stream the movies (avi, mpeg, flv etc) using a flash media player but after a bit of searching it seems that flash can only stream flv's. Obviously, I don't want to convert my whole hard drive into flv#s.
The only other option I've been able to find is the following code...
<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="195" width="340" name="CRUNKCinema" align="left">
<param name="src" value="/path/to/video.avi">
<param name="autoplay" value="true">
<param name="controller" value="true">
<embed height="195" width="340" align="left" src="/path/to/video.avi" autoplay="true" controller="true"></embed>
</object>
But this seems very intermittent, sometimes the video doesn't load at all. Also there doesn't seem to be any buffering using this option.
Could someone suggest a better solution to my problem? Thanks!