1
A
回答
2
如果使用FLVPlayback組件,代碼迴路視頻應該是這樣的:
import fl.video.VideoEvent;
/**
* Your code where you set the source and other properties of the FLVPlayback component
*/
//Add an event listener to the COMPLETE event, so you will know when the video reached the last frame
flvComp.addEventListener(VideoEvent.COMPLETE, loopVideo);
//Rewind and start playing the video again
function loopVideo(event:VideoEvent):void
{
flvComp.autoRewind = true;
flvComp.play();
};
我希望它能幫助,祝你好運 羅布
1
here's an example with a looped flv,您幾乎只需要NetConnection
,NetStream
和Video
那裏
相關問題
- 1. 無閃爍循環flv
- 2. inluxis flv streaming(flash)
- 3. 閃存FLV裝載機
- 4. 嵌入式Flash透明FLV
- 5. 動態Flash FLV播放器
- 6. Flash Media Server,HLS和FLV
- 7. 時間軸上的FLV正在閃爍
- 8. Flash/FLV - 如何從FLV中提取元數據?
- 9. 閃存的嵌入式FLV內存泄漏
- 10. 在ImageView中播放Flash(flv)文件android
- 11. 從Flash Player中的ByteArray播放FLV
- 12. Flash播放器不mediaelement.js和FLV文件
- 13. 如何確保Flash緩存flv文件?
- 14. flv視頻播放後的Flash交互
- 15. 如何批量導入FLV到Flash中
- 16. 如何在Adobe Flash CS3中以.flv格式保存Flash動畫?
- 17. 比較2內核映像和閃存比較FLASH內存
- 18. jQuery閃爍/ Flash動畫
- 19. Flash AS3神祕閃爍MovieClip
- 20. 如何使用閃存加密/解密FLV
- 21. Drupal 6:內聯swf/flv在內容中上傳
- 22. Fancybox for .flv
- 23. Opera不調用閃存調用閃存的ExternalInterface.callback()函數flash
- 24. 是否可以將FLV文件嵌入到閃存中?
- 25. 頻閃媒體播放flv流波濤洶涌
- 26. PHP ffmpeg flv流Passthru
- 27. 閃存getTimer()在Flash Builder不工作4.5
- 28. Youtube Flash在Firefox中嵌入閃爍
- 29. 我不能使用Flash變數閃爍
- 30. Flash支持與閃存安裝
它stil不起作用。我有一個movieclip,它包括這個flv電影.. movieclip的作品,但電影停止後的時間到了。此代碼在「VideoEvent」中給我一個錯誤。我試圖寫視頻.. – 2011-01-22 15:15:03