I spoke with On2 yesterday about a tech support question and got some good advice that I would like to pass on to my Vegas brothern. It's so awesome when a tech support guy delivers advice above expectations, it speaks enormously about On2 as a company. The phone call was followed up with this email! Again, above and beyond expectations! I'll keep you posted with any progress.
Hi John,
This is a follow-up to phone conversation. This reply is being written Wednesday, January 31, 2007 at 7:43 PM EST.
First, thank-you for the Sony Software website. I have printed out the Plug-in Development Kit (PIDK) and will try and get some of our development team to look at it.
Second, on your player questions, I would seriously look at the two players we talked about. One thing I did not mention is that currently we have a bug where if you picked stop on first frame, you don't get the first frame as we talked about, but a grey panel.
The following is taken from the text I send to users looking for a patch to this problem:
You can pick up an open source flv player from the web and use this player to output your flv files. It has the drawback that you can't encode to SWF files but this is actually an advantage since SWF files have a 16000 frame limit (imposed by Macromedia). As well, these players allow your flv files to stop on first frame (something our software does not permit when you use make player). And finally you create the image that you want to use as the player thumbnail - not as automated but you can pick which image you want to use (something we don't support yet either). To go about using this procedure:
1. I would encode all files to FLV file format.
2. You can obtain a SWF-player for FLV files from the internet. Go to one of these web sites, download and install the files. Then copy the required files up to your ISP.
Wijering Video player: http://www.jeroenwijering.com/?item=Flash_Video_Player [used for playing flv on web]
Martijn Devisser FLV player: http://www.martijndevisser.com/blog/article/flv-player-updated [used for playing on desktop]
Peldi's FLVplayer:
desc: http://www.peldi.com/fmswiki/index.php?title=FLVPlayer
srce: http://www.peldi.com/blog/images/FLVPlayer.zip
Wimpy: http://www.wimpyplayer.com/ [$29.95]
Proxus:http://www.proxus.com/ [$25]
Flowplayer: http://flowplayer.sourceforge.net/
3. If you use jeroen wijering's player (for example only), then you would use the following code:
<object type="application/x-shockwave-flash" width="400" height="220"
wmode="transparent" data="flvplayer.swf">
<param name="movie" value="flvplayer.swf" />
<param name="wmode" value="transparent" />
<object/>
you have to name your flv file video.flv and put it in the same directory as your webpage and the flvplayer.swf.
4. If you don't like to be told what your file is called or which directory it is stored, then you can use the following code:
<object type="application/x-shockwave-flash" width="400" height="220"
wmode="transparent" data="flvplayer.swf?file=movies/holiday.flv">
<param name="movie" value="flvplayer.swf?file=movies/holiday.flv" />
<param name="wmode" value="transparent" />
</object>
it gets a bit more complicated - but not by much. Note, the width and height must be changed.
5. Finally to add autostart:
<object type="application/x-shockwave-flash" width="400" height="220"
wmode="transparent" data="flvplayer.swf?file=movies/holiday.flv&autoStart=false">
<param name="movie" value="flvplayer.swf?file=movies/holiday.flv&autoStart=false" />
<param name="wmode" value="transparent" />
</object>
Note: the need for the ampersand to join the 2 variables together.
6. To add a jpg placeholder for the video player, create an jpg with the same as the flv file: ie. if you have video.flv, then create video.jpg
7. For example, this is one of my test files:
<html>
<head>
<title>Flash FLV Player</title>
</head>
<body>
<object type="application/x-shockwave-flash" data="flvplayer.swf?file=VOX-Berlin.flv&autoStart=false" width="400" height="220" wmode="transparent" >
<param name="movie" value="flvplayer.swf?file=VOX-Berlin.flv&autoStart=false" />
<param name="wmode" value="transparent" />
</object>
</body>
</html>
Hi John,
This is a follow-up to phone conversation. This reply is being written Wednesday, January 31, 2007 at 7:43 PM EST.
First, thank-you for the Sony Software website. I have printed out the Plug-in Development Kit (PIDK) and will try and get some of our development team to look at it.
Second, on your player questions, I would seriously look at the two players we talked about. One thing I did not mention is that currently we have a bug where if you picked stop on first frame, you don't get the first frame as we talked about, but a grey panel.
The following is taken from the text I send to users looking for a patch to this problem:
You can pick up an open source flv player from the web and use this player to output your flv files. It has the drawback that you can't encode to SWF files but this is actually an advantage since SWF files have a 16000 frame limit (imposed by Macromedia). As well, these players allow your flv files to stop on first frame (something our software does not permit when you use make player). And finally you create the image that you want to use as the player thumbnail - not as automated but you can pick which image you want to use (something we don't support yet either). To go about using this procedure:
1. I would encode all files to FLV file format.
2. You can obtain a SWF-player for FLV files from the internet. Go to one of these web sites, download and install the files. Then copy the required files up to your ISP.
Wijering Video player: http://www.jeroenwijering.com/?item=Flash_Video_Player [used for playing flv on web]
Martijn Devisser FLV player: http://www.martijndevisser.com/blog/article/flv-player-updated [used for playing on desktop]
Peldi's FLVplayer:
desc: http://www.peldi.com/fmswiki/index.php?title=FLVPlayer
srce: http://www.peldi.com/blog/images/FLVPlayer.zip
Wimpy: http://www.wimpyplayer.com/ [$29.95]
Proxus:http://www.proxus.com/ [$25]
Flowplayer: http://flowplayer.sourceforge.net/
3. If you use jeroen wijering's player (for example only), then you would use the following code:
<object type="application/x-shockwave-flash" width="400" height="220"
wmode="transparent" data="flvplayer.swf">
<param name="movie" value="flvplayer.swf" />
<param name="wmode" value="transparent" />
<object/>
you have to name your flv file video.flv and put it in the same directory as your webpage and the flvplayer.swf.
4. If you don't like to be told what your file is called or which directory it is stored, then you can use the following code:
<object type="application/x-shockwave-flash" width="400" height="220"
wmode="transparent" data="flvplayer.swf?file=movies/holiday.flv">
<param name="movie" value="flvplayer.swf?file=movies/holiday.flv" />
<param name="wmode" value="transparent" />
</object>
it gets a bit more complicated - but not by much. Note, the width and height must be changed.
5. Finally to add autostart:
<object type="application/x-shockwave-flash" width="400" height="220"
wmode="transparent" data="flvplayer.swf?file=movies/holiday.flv&autoStart=false">
<param name="movie" value="flvplayer.swf?file=movies/holiday.flv&autoStart=false" />
<param name="wmode" value="transparent" />
</object>
Note: the need for the ampersand to join the 2 variables together.
6. To add a jpg placeholder for the video player, create an jpg with the same as the flv file: ie. if you have video.flv, then create video.jpg
7. For example, this is one of my test files:
<html>
<head>
<title>Flash FLV Player</title>
</head>
<body>
<object type="application/x-shockwave-flash" data="flvplayer.swf?file=VOX-Berlin.flv&autoStart=false" width="400" height="220" wmode="transparent" >
<param name="movie" value="flvplayer.swf?file=VOX-Berlin.flv&autoStart=false" />
<param name="wmode" value="transparent" />
</object>
</body>
</html>