[flex_india:26405] youtube video player using flex.......

View: New views
6 Messages — Rating Filter:   Alert me  

[flex_india:26405] youtube video player using flex.......

by abhilashm86 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


if i use built in videoplayer in flex 3.0, can i give it an URL of a
video file in internet(youtube)?? so that it looks up and play
managing buffer?
Or i should build one, i'm new to flex, i know flex supports .flv
format, which is best option?? please explain...........

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_india@...
To unsubscribe from this group, send email to flex_india+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---


[flex_india:26425] Re: youtube video player using flex.......

by flexorz group of flex corders :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

hey abhilashm68;

try this ;
var urll:String= "http://in.youtube.com/v/fVGk5qm6Mac&hl=en&fs=1";

 <mx:SWFLoader id="ss" source="{urll}"  autoLoad="true"  />


thanks
dinukx

On Thu, Nov 5, 2009 at 2:45 PM, abhilashm86 <abhilashm86@...> wrote:

if i use built in videoplayer in flex 3.0, can i give it an URL of a
video file in internet(youtube)?? so that it looks up and play
managing buffer?
Or i should build one, i'm new to flex, i know flex supports .flv
format, which is best option?? please explain...........




--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_india@...
To unsubscribe from this group, send email to flex_india+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---


[flex_india:26431] Re: youtube video player using flex.......

by abhilashm86 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

i tried the following, but video never plays?? please tell how to do?? i even tried with swfloader, not working...........


<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
 
    <mx:Script>
        <![CDATA[
            public var urll:String="http://www.youtube.com/watch?v=RJe2Hxgw7Wg&feature=rec-HM-r2";
        ]]>
    </mx:Script>

    <mx:Panel width="100%" height="100%">
         <mx:VideoDisplay source="{urll}" width="100%" height="100%" autoPlay="true">
            
         </mx:VideoDisplay>   
         
    </mx:Panel>
</mx:Application>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_india@...
To unsubscribe from this group, send email to flex_india+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---


[flex_india:26434] Fwd: [flex_india:26425] Re: youtube video player using flex.......

by abhilashm86 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

i also tried from adobe site, a tutorial, what is wrong? why is youtube video not playing?


<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" verticalAlign="top"
    creationComplete="Init();" backgroundGradientAlphas="[1.0, 1.0]"
     backgroundGradientColors="[#EE3636, #308A3F]">
     
<mx:Script>
    <![CDATA[
        private function Init():void
        {
            var url:String="http://www.youtube.com/v/zlfKdbWwruY&hl=en&fs=1";
           
            Security.allowDomain(url);
           
             youtubevid.load(url);
                   
        }
    ]]>
</mx:Script>
<mx:VBox width="100%" height="100%" verticalAlign="top" horizontalAlign="center" verticalGap="0">
    <mx:Label text="abhi player" width="100%" color="silver" textAlign="center" fontSize="16">
       
    </mx:Label>
    <mx:SWFLoader id="youtubevid" source="{url}"  horizontalAlign="center" width="425" height="344" autoLoad="true"/>
</mx:VBox>
   
</mx:Application>


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_india@...
To unsubscribe from this group, send email to flex_india+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---


[flex_india:26448] Re: Fwd: [flex_india:26425] Re: youtube video player using flex.......

by flexorz group of flex corders :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hey abhilash

you are trying to link the html page it self to the swfloader ,

check my url exmaple ,[its not the default link]

you need the link of that video which you want to play....


for an example

this is the link which you have to give to the loader
http://in.youtube.com/v/RJe2Hxgw7Wg?gl=US&hl=hi

cheers

dinukx

On Thu, Nov 5, 2009 at 8:39 PM, abhilash M <abhilashm86@...> wrote:
i also tried from adobe site, a tutorial, what is wrong? why is youtube video not playing?



<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" verticalAlign="top"
    creationComplete="Init();" backgroundGradientAlphas="[1.0, 1.0]"
     backgroundGradientColors="[#EE3636, #308A3F]">
     
<mx:Script>
    <![CDATA[
        private function Init():void
        {
            var url:String="http://www.youtube.com/v/zlfKdbWwruY&hl=en&fs=1";
           
            Security.allowDomain(url);
           
             youtubevid.load(url);
                   
        }
    ]]>
</mx:Script>
<mx:VBox width="100%" height="100%" verticalAlign="top" horizontalAlign="center" verticalGap="0">
    <mx:Label text="abhi player" width="100%" color="silver" textAlign="center" fontSize="16">
       
    </mx:Label>
    <mx:SWFLoader id="youtubevid" source="{url}"  horizontalAlign="center" width="425" height="344" autoLoad="true"/>
</mx:VBox>

   
</mx:Application>





--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_india@...
To unsubscribe from this group, send email to flex_india+unsubscribe@...
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---


[flex_india:26888] Re: youtube video player using flex.......

by Stephanee :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Moyea Web Player is an easy-to-use FLV player creator, with which,
customizing skinning streaming FLV player and FLV player (flash video
player) for website only needs a few mouse-clicks. And the created
player can be easily edited via flashvars code.
This is official website - http://www.playerdiy.com/
This is tutorial - http://www.playerdiy.com/support/tutorial/customize-flash-video-player.html

--

You received this message because you are subscribed to the Google Groups "Flex India Community" group.
To post to this group, send email to flex_india@....
To unsubscribe from this group, send email to flex_india+unsubscribe@....
For more options, visit this group at http://groups.google.com/group/flex_india?hl=en.