for VLC, which has excellent multi-platform support http://www.videolan.org/doc/play-howto/en/ch04.html TONS of controls This works: Code <html> <head><title>Futurama's</title></head>
<body>
<h1>Demo of VLC mozilla plugin - Example 1</h1>
<embed type="application/x-vlc-plugin" name="video1" autoplay="no" loop="yes" width="640" height="480" target="..\Futurama - S01e01 - Space Pilot 3000.avi" /> <br /> <a href="javascript:;" onclick='document.video1.play()'>Play video1</a> <a href="javascript:;" onclick='document.video1.pause()'>Pause video1</a> <a href="javascript:;" onclick='document.video1.stop()'>Stop video1</a> <a href="javascript:;" onclick='document.video1.fullscreen()'>Fullscreen</a>
</body> </html> as does Code <html> <head><title>Futurama's</title></head>
<body>
<h1>Demo of VLC mozilla plugin - Example 1</h1>
<embed type="application/x-vlc-plugin" name="video1" autoplay="no" loop="yes" width="640" height="480" target="c:\123\\Futurama - S01e01 - Space Pilot 3000.avi" /> <br /> <a href="javascript:;" onclick='document.video1.play()'>Play video1</a> <a href="javascript:;" onclick='document.video1.pause()'>Pause video1</a> <a href="javascript:;" onclick='document.video1.stop()'>Stop video1</a> <a href="javascript:;" onclick='document.video1.fullscreen()'>Fullscreen</a>
</body> </html> but not Code <html> <head><title>Futurama's</title></head>
<body>
<h1>Demo of VLC mozilla plugin - Example 1</h1>
<embed type="application/x-vlc-plugin" name="video1" autoplay="no" loop="yes" width="640" height="480" target="\\computername\drive\folder\Futurama - S01e01 - Space Pilot 3000 [Dd].avi" /> <br /> <a href="javascript:;" onclick='document.video1.play()'>Play video1</a> <a href="javascript:;" onclick='document.video1.pause()'>Pause video1</a> <a href="javascript:;" onclick='document.video1.stop()'>Stop video1</a> <a href="javascript:;" onclick='document.video1.fullscreen()'>Fullscreen</a>
</body> </html> just passing along what i'm a learnin!
Message edited by hiflyer - Friday, 2008-09-26, 9:31 Pm |