Flash CS5.5:在 iPad 上播放视频?

发布于 2024-11-05 20:33:49 字数 116 浏览 0 评论 0原文

有人成功地让视频在为 iPad 发布的 Flash 中播放吗?我尝试过使用 Video 和 StageVideo 类,但即使它们在 Flash IDE 中测试成功,它们也无法在 iPad 上运行。我正在使用CS5.5。

Has anyone succeeded in getting video to play in Flash published for the iPad? I have tried using both the Video and StageVideo classes, but even though they test successfully in the Flash IDE, they do not work on the iPad. I am using CS5.5.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

成熟的代价 2024-11-12 20:33:50

我已经实现了在iPhone和iPad上播放视频,请按照以下步骤操作:

您可以使用普通的FLVPlayback

  1. 将视频和.fla文件放在一起。
  2. FLVPlayback 组件导入到 stage 并删除它以获得皮肤。
  3. 在第一帧脚本中添加以下代码(我使用的格式:.flv.mov.mp4):

import fl.video.*; 
var myVideo:FLVPlayback = new FLVPlayback(); 
myVideo.source = "video.flv"; 
myVideo.skin = "SkinOverPlayStopSeekFullVol.swf"; 
myVideo.addEventListener(VideoEvent.COMPLETE, completePlay); 
function completePlay(e:VideoEvent):void {
myVideo.alpha=0.2;

请记住这一点:

  • 发布文件时,添加视频文件。
  • 为了进行测试,请添加视频文件,而不是包含视频文件的文件夹,并在视频播放器的源中仅添加 filename.extension

I have achieved playing video in iPhone and iPad, follow the following steps:

You can use ordinary FLVPlayback

  1. Keep videos and .fla file together.
  2. Import the FLVPlayback component to stage and delete it in order to get the skin.
  3. Add the following code in the first frame script (formats I used: .flv, .mov, .mp4):

import fl.video.*; 
var myVideo:FLVPlayback = new FLVPlayback(); 
myVideo.source = "video.flv"; 
myVideo.skin = "SkinOverPlayStopSeekFullVol.swf"; 
myVideo.addEventListener(VideoEvent.COMPLETE, completePlay); 
function completePlay(e:VideoEvent):void {
myVideo.alpha=0.2;

Important to keep in mind:

  • While publishing the file, add the video files.
  • For testing, add the video files, not the folder containing the video files and in source of the video player add just filename.extension.
梦幻之岛 2024-11-12 20:33:50

除非您使用 loadercontext,否则您无法加载包含 ios 代码的外部 swf,而 flvplayback 皮肤则无法做到这一点。

为了补救,不要使用皮肤并创建自定义控件(如果需要)。

you can't load an external swf that contains code in ios unless you use a loadercontext and that's not possible with an flvplayback skin.

to remedy, don't use a skin and create custom controls, if needed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文