如何每隔几分钟旋转一次 Flash 视频?
我想在 5 分钟后将网站上的 Flash 视频旋转为新视频。 自动旋转它。
I'd like to rotate flash video on my website after 5 minutes to a new video. Autorotate it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通过旋转,我认为您的意思是播放系列中的下一个视频,对吧? 您需要添加一个事件监听器来监听播放 flv 的 NetStream 实例的 NetStatusEvent。 一旦您收到“NetStream.Play.Stop”,您就知道您的视频已停止,您可以启动下一个视频。
by rotate, i think you mean play the next video in a series, right? you need to add an event listener to listen to the NetStatusEvent for the NetStream instance playing the flv. Once you get 'NetStream.Play.Stop' you know your video has stopped and you can fire up the next one.
您可以将 setInterval 与补间结合使用来执行实际的旋转。
You'd use setInterval in combination with a tween to do the actual rotation.