Edgardbuda 0 Denunciar post Postado Fevereiro 7, 2013 Blz galera!! Estou com muitas dificuldades para encontrar formas de incorporar videos do vimeo no meu site, já fiz pesquisas, mas não consigo achar um que realmente me ajude, estou com dificuldades para entender. Vcs poderiam me ajudar a solucionar esse problema? Estou usando o flash cs5.5 Compartilhar este post Link para o post Compartilhar em outros sites
Edgardbuda 0 Denunciar post Postado Fevereiro 7, 2013 Será que da pra fazer isso por xml? Achei esse código: <?xml version="1.0" encoding="utf-8"?> <oembed> <type>video</type> <version>1.0</version> <provider_name>Vimeo</provider_name> <provider_url>http://vimeo.com/</provider_url> <title>Brad!</title> <author_name>Casey Donahue</author_name> <author_url>http://vimeo.com/caseydonahue</author_url> <is_plus>1</is_plus> <html><iframe src="http://player.vimeo.com/video/7100569" width="1280" height="720" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe></html> <width>1280</width> <height>720</height> <duration>118</duration> <description>Brad finally gets the attention he deserves.</description> <thumbnail_url>http://b.vimeocdn.com/ts/294/128/29412830_1280.jpg</thumbnail_url> <thumbnail_width>1280</thumbnail_width> <thumbnail_height>720</thumbnail_height> <video_id>7100569</video_id> </oembed> Se der pra fazer por esse método, como eu faço o flash carregar o xml? Compartilhar este post Link para o post Compartilhar em outros sites
Elektra 102 Denunciar post Postado Fevereiro 8, 2013 Sugiro inicialmente pesquise sobre API do YouTube para AS3. Do YouTube encontra tutoriais facilmente, vou testar com o Vimeo, confesso que fiquei curiosa. Abs Compartilhar este post Link para o post Compartilhar em outros sites
Edgardbuda 0 Denunciar post Postado Fevereiro 15, 2013 Ok Elektra, vou pesquisar. Achei algumas coisas relacionado com moogaloop, mas está um pouco dificil para entender. Abs Será que é possivel fazer o flash carregar um html? Pq eu consegui fazer o html carregar um video do vimeo no Dreamweaver e vou usar junto com css. Será que assim dá certo? Eu consegui achar um codigo para incorporar videos do youtube, mas tenho que fazer isso com o vimeo, vcs poderiam me ajudar se consigo adaptar esse código para incorporar videos do vimeo? Estou precisando mesmo dessa ajuda. O site do tutorial é esse, já tentei mudar algumas coisas mas dá erros. http://scareddog.com/embed-youtube-in-flash-flash-cs5/ O código é esse: // The player SWF file on www.youtube.com needs to communicate with your host // SWF file. Your code must call Security.allowDomain() to allow this // communication. Security.allowDomain("www.youtube.com"); // This will hold the API player instance once it is initialized. var player:Object; var loader:Loader = new Loader(); loader.contentLoaderInfo.addEventListener(Event.INIT, onLoaderInit); loader.load(new URLRequest("http://www.youtube.com/watch?v=CODE_HERE?version=3")); function onLoaderInit(event:Event):void { addChild(loader); loader.content.addEventListener("onReady", onPlayerReady); loader.content.addEventListener("onError", onPlayerError); loader.content.addEventListener("onStateChange", onPlayerStateChange); loader.content.addEventListener("onPlaybackQualityChange", onVideoPlaybackQualityChange); } function onPlayerReady(event:Event):void { // Event.data contains the event parameter, which is the Player API ID trace("player ready:", Object(event).data); // Once this event has been dispatched by the player, we can use // cueVideoById, loadVideoById, cueVideoByUrl and loadVideoByUrl // to load a particular YouTube video. player = loader.content; // Set appropriate player dimensions for your application player.setSize(480, 360); } function onPlayerError(event:Event):void { // Event.data contains the event parameter, which is the error code trace("player error:", Object(event).data); } function onPlayerStateChange(event:Event):void { // Event.data contains the event parameter, which is the new player state trace("player state:", Object(event).data); } function onVideoPlaybackQualityChange(event:Event):void { // Event.data contains the event parameter, which is the new video quality trace("video quality:", Object(event).data); } Stopping the Video when you navigate away from the page. (Updated 4/23/2012) Add an Event Listener with the following code as an example. Modify this code to suit your needs. BUTTONNAME_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToScene_4); function fl_ClickToGoToScene_4(event:MouseEvent):void { MovieClip(this.root).gotoAndPlay(1, "intro"); player.destroy(); this.removeChild(loader); } Compartilhar este post Link para o post Compartilhar em outros sites