Adobe Air video player blank video on iPad

狂风中的少年 提交于 2019-12-13 04:53:44

问题


Any idea why this simple piece of code wont work on iPad mobile? This works great on Android tablets, the desktop version, web version, etc. On iPad, the video is blank

<?xml version="1.0" encoding="utf-8"?>
<!-- controls\videoplayer\VideoPlayerEvent.mxml-->
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" 
               xmlns:s="library://ns.adobe.com/flex/spark" 
               xmlns:mx="library://ns.adobe.com/flex/mx">


    <s:VideoPlayer 
        source="rtmp://fmsexamples.adobe.com/vod/mp4:_cs4promo_1000.f4v"
        width="500" height="500" x="500" y="500"
        loop="true" />
 </s:Application>

回答1:


Taken from my comment:

iOS doesn't playback of h.264 encoded mp4s or f4vs through the standard Flex VideoPlayer. Only ways you can play those back are through StageWebView and StageVideo



来源:https://stackoverflow.com/questions/20132324/adobe-air-video-player-blank-video-on-ipad

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!