2011/11/05

【Flex】FlvPlayer作成 part1

FlexでFlvPlayerを作ることになりました。

要件としてはニコニコ動画の動画プレイヤー的なものを作る予定です。

今回はFlvPlayerの基板として下記の要件のものを作りました。

・再生
・停止
・一時停止

今回はこの要件を満たすものを作りました。

Flexはコンポーネントが多数ありますので、この位のものなら
ASを組む必要はないです。

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="400" height="400" >

  <mx:Panel id="panel" x="10" y="10" width="380" height="380" layout="absolute" >
    <mx:VideoDisplay x="20" y="10" width="320" height="240" id="player" autoPlay="false" autoRewind="false" source="sample.flv"/>
    <mx:Button id="play" x="158" y="276" label="再生" click="player.play()" />
    <mx:Button id="pause" x="214" y="276" label="一時停止" click="player.pause()" />
    <mx:Button id="stop" x="292" y="276" label="停止" click="player.stop()" />
  </mx:Panel>

</mx:Application>
上記で再生するだけなら出来ます。 次回からシークバーを動画に同期させるようにしたいと思います。 終わり

0 件のコメント:

コメントを投稿