Flex4.6 IOS(iphone/ipad)视频播放解决方案 结合Html5

Flex4.6 【原创】IOS(iphone/ipad)视频播放解决方案
Flex的video类对于视频播放在ios操作系统下表现出不兼容,采用调用ios源生播放器的思路,那么怎么调呢?
话说Html5 和Flex是竞争关系,这次利用Html5的video标签实现ios播放视频,因为ios下safari浏览器解析Html5页面的video标签时自动调出源生播放器,相信聪明的你已经明白了
环境:Flex4.6
1:首先明白Flex要做的事情就是在Mobile项目中加载Html5页面
Flex封装一个用来加载Html5的容器 (HTML5Video.mxml)
<?xml version="1.0" encoding="utf-8"?>
<!--
VideoPlayer depend on HTML5
============================
Explain:this is a StageWebView object looad HTML5 with a VideoPlayer
Code by: yaoyf 2012-04-28
-->
<s:SkinnableContainer xmlns:fx="http://ns.adobe.com/mxml/2009" 
        xmlns:s="library://ns.adobe.com/flex/spark" 
        backgroundColor="0xEEEEEE"
        width = "100%"
        height = "100%"
        addedToStage="callLater(addedToStageHandler)">
    
    <fx:Script>
        <![CDATA[
            import flash.utils.setTimeout;
            
            import mx.events.FlexEvent;
            
            /**this is a StageWebView**/
            private  var webView:StageWebView;
            
            /**the video's url**/
            [Bindable]public var videourl:String;
            
            private var isShow:Boolean = true;
            
            private var rect:Rectangle;
            
            protected function addedToStageHandler():void
            {
                webView = new StageWebView();
                webView.stage = this.stage;
                webView.addEventListener(LocationChangeEvent.LOCATION_CHANGE,onLocationChange);
                webView.addEventListener(Event.COMPLETE,onComplete);
                webView.addEventListener(ErrorEvent.ERROR,onError);
                webView.loadURL(videourl);
            }
            
            protected function onComplete(event:Event):void
            {
                trace("onComplete : " + event);
            }
            
            protected function onError(event:ErrorEvent):void
            {
                trace(event.text);
            }
            
            protected function onLocationChange(event:Event):void
            {
                trace("url located : " + videourl);
                if(isShow){
                    webView.viewPort = rect;
                }
                isShow = false;
            }
            
            public function redrawRectangle(_x:Number , _y:Number , _width:Number , _height:Number):void
            {
                rect = null;
                drawRectangle(_x , _y , _width , _height);
                if(!webView)return;
                webView.viewPort = rect;
            }
            
            private function drawRectangle(_x:Number , _y:Number , _width:Number , _height:Number):void{
                rect = new Rectangle( _x, _y, _width, _height);
            }
            
        ]]>
    </fx:Script>
    <fx:Declarations>
    </fx:Declarations>
</s:SkinnableContainer>

2:第一视图:传递视频url,监听屏幕转向事件并处理
<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009" 
        xmlns:s="library://ns.adobe.com/flex/spark" 
        title="Video" backgroundColor="0x030303"
        xmlns:video="views.video.*" actionBarVisible="true"
        addedToStage="callLater(addedToStageHandler)">
    <fx:Declarations>
    </fx:Declarations>
    <fx:Script>
        <![CDATA[
            import mx.events.FlexEvent;
            
            import views.video.HTML5Video;
            
            [Bindable]public var vdoUrl:String = "http://10.4.6.117:8080/video/video.jsp?videourl=2.mp4";
            
            private function onOrientationChange(event:StageOrientationEvent):void {     
                this.orientationChanged(event.afterOrientation);
            }
            
            protected function addedToStageHandler():void
            {
                stage.addEventListener(StageOrientationEvent.ORIENTATION_CHANGE,onOrientationChange);
                this.orientationChanged(stage.orientation);
            }
            
            private function orientationChanged(orientation:String):void
            {
                html5_video.redrawRectangle(0, this.actionBarVisible == true ? 45 : 0,this.width,this.height);
            }
            
        ]]>
    </fx:Script>
    <video:HTML5Video id="html5_video" videourl="{vdoUrl}"  horizontalCenter="0" verticalCenter="0"/>
</s:View>

3:部署一个jsp页面到Tomcat
jsp页面代码:(video.jsp)
<!doctype html>
    <head>
        <meta charset=utf-8>
        <title>HTML5 Video Player</title>
        <style>
        body{
            margin-top:10%;
            color:#EEEEEE;
        }
        </style>
    </head>
    <body id=home bgcolor="#030303">
    <center>
      <video id=home_video controls="controls" autoplay="autoplay" loop="loop" preload="auto" width=600 height=480>
            <source src="<%=request.getParameter("videourl")%>"  type="video/mp4; codecs='avc1.42E01E, mp4a.40.2'"/>
            Your browser does not support the video tag.
        </video>
    </center>
    </body>
</html>
部署:


我本机的请求地址:http://10.4.6.117:8080/video/video.jsp?videourl=2.mp4

先用支持Html5的浏览器测试(谷歌浏览器等)


基于bert实现关系三元组抽取python源码+数据集+项目说明.zip基于bert实现关系三元组抽取python源码+数据集+项目说明.zip基于bert实现关系三元组抽取python源码+数据集+项目说明.zip基于bert实现关系三元组抽取python源码+数据集+项目说明.zip基于bert实现关系三元组抽取python源码+数据集+项目说明.zip 个人大四的毕业设计、课程设计、作业、经导师指导并认可通过的高分设计项目,评审平均分达96.5分。主要针对计算机相关专业的正在做毕设的学生和需要项目实战练习的学习者,也可作为课程设计、期末大作业。 [资源说明] 不懂运行,下载完可以私聊问,可远程教学 该资源内项目源码是个人的毕设或者课设、作业,代码都测试ok,都是运行成功后才上传资源,答辩评审平均分达到96.5分,放心下载使用! 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),供学习参考。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值