FLV Playerを組み込む = HTMLソースに直接記述
<object type="application/x-shockwave-flash" data="player_flv_maxi.swf" width="320" height="240">
<param name="movie" value="player_flv_maxi.swf">
<param name="FlashVars" value="config=sample01.txt">
</object>

config=sample01.txtで先に作成した設定ファイルを読み込んでいます。

------------------

サンプル=紅とんぼ.html 動画部分

<object type="application/x-shockwave-flash" data="player_flv_maxi.swf" width="320" height="240">
<param name="movie" value="player_flv_maxi.swf">
<param name="FlashVars" value="config=sample01.txt">
</object> 

<p style="text-align:center;">
<video controls poster="naomi1.jpg" width="320" height="240" onclick="this.play()">
<source src="sample.mp4" type="video/mp4">
<source src="sample.webm" type="video/webm">
<source src="sample.ogv" type="video/ogg">
</video>
</p>