Hi,
I've a WMV file which should be published to the Internet (as Adobe FLV or SWF).
Transcoding might work out with SUPER, but in addition I need a free and simple way to publish the files to the net.
Without installing any additional software top the web server... or even have to download some browser plugins etc.
I just need a simple HTML page which includes the FLV/SWF files and automatically starts playing the video.
Any practical solution on that?
+ Reply to Thread
Results 1 to 3 of 3
-
-
Use JW Flash Player, http://www.jeroenwijering.com/?item=JW_FLV_Player, you just put the flash player files and flv video on the server and put this code in the html
<p id='preview'>The player will show in this paragraph</p>
<script type='text/javascript' src='swfobject.js'></script>
<script type='text/javascript'>
var s1 = new SWFObject('player.swf','player','400','300','9');
s1.addParam('allowfullscreen','true');
s1.addParam('allowscriptaccess','always');
s1.addParam('flashvars','file=video.flv');
s1.write('preview');
</script>/
Similar Threads
-
Video Converters that supports most video formats, RM, FLV, WMV, MOV, MP4
By Baldrick in forum Video ConversionReplies: 134Last Post: 31st Mar 2021, 10:27 -
SWF to FLV Converter
By MI6 in forum Video ConversionReplies: 1Last Post: 22nd Sep 2008, 14:52 -
SWF mx, swf 3 ( legacy ), and FLV, whats the difference
By theewizard in forum Newbie / General discussionsReplies: 3Last Post: 4th Feb 2008, 23:15 -
Flash FLV Internet Video Larger than 320 x 240
By foochuck in forum Newbie / General discussionsReplies: 3Last Post: 14th Jun 2007, 11:49