オープンソースコラム


2010/01/12 18:55Update

Flowplayer - オープンソースWebビデオ プレイヤー

TAGS: Flowplayer | JavaScript | Flash | SWF | ビデオ | プレイヤー

スポンサード リンク


FlowplayerはオープンソースのGPL3ライセンス Webビデオ プレイヤーです。                                                                                                                  

使い方例



<html> 
<head> 
    <script src="flowplayer-3.1.4.min.js"></script> 
</head> 
<body> 
 
<div id="player" style="display:block;width:425px;height:300px;"></div> 
flowplayer("player", "flowplayer.swf", { 
    onLoad: function() {    // called when player has finished loading 
        this.setVolume(30);    // set volume property 
    } 
}); 
</script>
 
</body> 
</html>


http://flowplayer.org/documentation/configuration/

Sponsored Link