1

ビデオプレーヤーを作成していて、データ生成モードを使用しようとしています。しかし、私が探求しようとしたとき、私は適切に進む方法を見つけることができませんでした。たくさん検索しましたが、データ生成モードでの検索例が見つかりませんでした。

誰かがこの状況で私を助けてくれますか?actionscript-3データ生成モードでのビデオストリーミングのサンプルコードがある場合は、共有してください。動作するコードの例が必要です。

4

1 に答える 1

0

これは役に立ちますか?http://forums.adobe.com/thread/646900

ns.seek(0);  //the parameter to seek() is irrelevant, as both the playout and FIFO buffers will be cleared

ns.appendBytesAction(NetStreamAppendBytesAction.RESET_SEEK);  //you can do this in NetStreamStatus if you want

ns.appendBytes(seekPosBytes);  //write the bytes to play from the desired stream position
于 2012-07-09T11:31:33.550 に答える