ActionScript 3.0 :: Loading Multiple Videos In FLVPlayback

Jun 4, 2009

I am building a video player which should load multiple videos in a FLVPlayback. When the loading of the first video has finished, the second one should start, using the VideoProgress Event.

My code looks like this, videos is an array with the paths to the videos:
 
flvPlayback.addEventListener(fl.video.VideoProgressEvent.PROGRESS, progress);
flvPlayback.addEventListener(VideoEvent.COMPLETE, onComplete);
private function progress(e:fl.video.VideoProgressEvent):void

[Code]....

Now I have the problem when I test this locally, the first video is invisible sometimes when starting to play. This is not happening everytime, but sometimes the video is not shown, but I can hear the sound, and I can see the scrubber on the seekbar moving.
 
I already tried to check in the progress function if the video is already playing, and if not, set a timer that will call the progress function again in 1 second.

View 7 Replies


Similar Posts:


ActionScript 3.0 :: FLVPlayback Component - Switching Between Videos

Mar 16, 2012

I am currently working on a project (AS3), where I have 2 frames, with 2 videos (using the FLVPlayback component) and I want to switch from one video to the next video, however the catch is when I switch to the next video I want the new video to play at the previous video time. Example: Video 1 plays, 10 sec later, you click a button to go and see the next video (in another frame) and that new Video starts 10 sec into it.

This is the codes I been using so far:
import fl.video.VideoEvent;
import fl.video.MetadataEvent;
video1.addEventListener(VideoEvent.PLAYHEAD_UPDATE, timer);
function timer(e:VideoEvent):void {
var newTime = video1.playheadTime;
[Code] .....

View 3 Replies

IDE :: FLVPlayback - Importing Videos Via Wizard To Stage

Dec 16, 2009

I imported multiple flvplayback videos on my file via the Video Wizard Import. After that I removed all videos except one. But it's still trying to load those old video and the skin of their player when I preload the file. I am sure there's no player on the stage except the one I need. And when I need to play the file, it's working well, the only problem is the extra loading for 6 skins that I don't use anymore and the time to look for 6 videos that are not there. So here're my questions;

1- When you import a video via Wizard, it there a script hidden somewhere that can be found?
2- When you import a flv to the stage, there's a loading bar saying getting metadata. Is there a place to edit or erase this metadata?
3- Any other ideas of where I could look to find this hidden data or trace or ghost that needs to be remove from the file ?

View 1 Replies

Flash :: Use FlvPlayBack To Play Back And Live Videos?

Nov 19, 2010

I want it to automatically detect if there's a live video,then play live;otherwise play back.

View 2 Replies

ActionScript 3.0 :: FLVPlayback Via XML - Play Videos From A XML Based Playlist

Aug 1, 2011

I am trying to play some videos from a XML based playlist. I found this, but it's for AS2: Quote:

[Code]...

The instance is named flv and the XML file flv.xml, what would be the correct way to do this in AS3?

View 9 Replies

ActionScript 3.0 :: Performance - Videos Play Slow Using FLVPlayback

Feb 25, 2009

My scene has a video background which scales to the stage size. Then, each section has another video when transitioning in. The problem is that the videos play really slow than they should, very low fps. When there are 2 videos on the stage, it goes even slower. I've tried with embedding videos, using FLVPlayback, wrapping in movieclips, but still the same result. The videos are exported at 30 fps, same rate than the flash movie.

View 3 Replies

Media Server :: Play Recorded Videos Using FLVPlayback Component?

Jan 17, 2011

I recorded videos using fms and i want to play them using FLVPlayback component. I've done some research but i cant find somethinguseful, I tried this code :
 
flvplayback.source = "rtmp://localhost/appname/instancename/video";

View 5 Replies

Flash :: Professional - Import YouTube Videos Into FLVPlayback Component?

Jun 18, 2011

I'm now working on a flash website, i need to play a youtube video inside my flash movie. In this Flash file i have a FLVPlayback component and i tried to link the youtube video into this but did'nt work.

View 1 Replies

Media Server :: Set The Flvplayback Properly So That It Can Play Both Live And Recorded Videos?

Nov 19, 2010

I've read the reference here,but it seems to me that I can only make it work with live OR recorded videos.How can I make it work with both live AND recorded videos?

View 7 Replies

ActionScript 3.0 :: Playing Two Videos - Assign The New Urls To 'player' Instance Instead Of FLVPlayback

Jan 5, 2011

I'll start by saying that I'm in the process of learning actionscript. That said, I'm wanting to play two videos with actionscript. I went through a tutorial and using a pre-built flash player I used the following script

[Code]....

Which worked fine. That said, that was just a test. We are wanting to use the F4 Player. I opened up the player and looked at the actionscript (which is below). I had some trouble, so I posted on here and this was my response..

[Code]....

View 0 Replies

Flash :: Multiple Loadmovie() Ends Up With Multiple Videos Played At The Same Time?

May 24, 2010

i use loadmovie() to load youtube videos inside my flash website but when i load another video the old one doesn't stop, so i tried unloadmovie to destroy it but it seems that i did a mistake in my code

This is how the code looks to stop the old one an load the new:

vloader.unloadMovie();
vloader.loadMovie("http://www.youtube.com/v/Alw5hs0chj0&hl=fr&fs=1hJ-mPcGtC");

How to do that? use other objects or classes, i only want to edit that code.

Note: I have an empty MOVIE CLIP called "vloader" where i load the video player.

View 2 Replies

ActionScript 3.0 :: Multiple Videos To Play With Multiple Buttons?

Feb 4, 2010

I am creating a stand alone DVD to be used with Flash player. I am wanting to add different videos that play with different buttons. The following is the code I have for the video to play when the corresponding button is clicked..... My problem is how do I get that video to "leave" and stop playing when another button is pushed to play a different video.
 
Educators_btn.addEventListener(MouseEvent.CLICK,clickEducators);
function clickEducators(evtObj:MouseEvent)
{
gotoAndStop("OE")

[code]....

View 2 Replies

ActionScript 3.0 :: Multiple FLVplayback/multiple XML Playlists?

Aug 7, 2010

I'm using the code of the -Web video template: Dynamic video playlist- (with no thumbs)and a ComboBox on the stage. It's OK but I need a help to understand how I can use 3 FLVplayback and 3 XML playlists.Since I can't use multiple classes in a .fla and since I need only one ComboBox that triggers all the 3 FLVplayback with their own XML playlist..
 
-My code with one FLVplayback is the following:
 
package { import flash.display.MovieClip; import fl.video.FLVPlayback; import flash.net.URLLoader; import flash.net.URLRequest; import flash.events.Event; import flash.text.TextField; import fl.controls.ComboBox;

[code]....

View 1 Replies

ActionScript 3.0 :: Multiple Videos In Movie?

Apr 9, 2009

I'm fairly new to CS3, and I'm pretty sure I can figure this out. I don't know the vocab. but I'm thinking I do something like this (forgive my newbie lingo):load my first video on a layer. On a separate layer put all my buttons... on a different layer put some code telling what to do when each button is pushed... I was thinking of putting all the videos on the timeline in different spots, then just having each button jump to it's video's "spot" .... but thinking about that... that's probably a stupid way to do it... because they'll probalby be playing on top of each other.

View 7 Replies

Load Multiple SWFs Containing FLV Videos?

Sep 29, 2009

I'm having a heck of a time trying to get a number of external SWFs loaded into one main SWF in successive order, the next one playing after the other has ended. To complicate matters, the external SWFs have FLV files in them.
 
using Flash CS3
Actionscript 3.0
 
So, here's essentially what I'm looking to do: - I have one main SWF file (call it main.swf)- load several SWF files into this file so they play in order (let's call them movie1.swf, movie2.swf, movie3.swf, and so on) - these external SWF files all have FLV progressive downloads (not embedded, becuase then my audio doesn't sync up) - I want movie1.swf to load and play in the main file, then detect when the movie is complete, and unload that audio/video then load in movie2.swf, and so on.
 
This script seemed promising, but loads all of my SWFs on top of each other, making for some ::interesting:: audio... (i have it pasted in actions on first frame in main.swf)
 
var a:Array = new Array("movie1.swf", "movie2.swf", "movie3.swf");var tl:MovieClip=this
var index:uint=0;
loadF(new Event("nada"));

[Code]....
 
Maybe there's some code that can be pasted in the individual SWFs?

View 2 Replies

Professional :: Multiple Videos In Flash?

Aug 31, 2011

I'm very new to Flash. I'm going to have a motion graphics piece where a vid will play for a short time, filling the screen, then shrink to a small square thats in a grid of 6-9 small squares. Once it shrinks down, it stops at its current frame. So there will be 6-9 small squares of the last frame of 6-9 videos. Can this be accomplished in flash? These are not interactive videos; they will automatically play when the first appear

View 1 Replies

C++ :: Play Hd Videos In Multiple Monitors?

Nov 5, 2011

I'm looking for a solution to play HD videos on a multimonitor OSX environment for a projector/desktop application. It could be one huge video, or a video split in parts.So far I've been using Flash StageVideo successfully to play 1080p and 720p on single monitors. This works great with flash projectors. The problem with flash projectors is you can't span multiple monitors, or multiple windows. I still haven't tried opening multiple projectors, because I wouldn't know how to position each projector in a different monitor consistently.

In Adobe AIR you can have multiple windows and control their position, but AFAIK you can't use StageVideo to decode videos with the GPU... and using the classic Video class is really out of the question.

With C++ there are multiple frameworks (cinder/openFrameworks) but AFAIK opening multiple windows, or spaning multiple monitors is not such a good idea because of bad performance. I stil haven't figured out if it's possible or even a good idea to open one app per monitor and control it's position.

View 1 Replies

ActionScript 3.0 :: Multiple Videos With Xmoov

Jun 24, 2010

I have been trying to use mutiple videos with the pesudo streaming xmoov php script, the issue I have is determaning the current vs total time of the video, and properly scurbbing.

View 0 Replies

ActionScript 3.0 :: Possible To Preload Multiple Videos?

May 17, 2011

I'm working on a "TV" in Flash where I use several videos running at the same time, so the videos tend to be lagging in the beginning. I think I would need a loading bar to show the user when the TV is ready to be turned on. [code]...

View 0 Replies

Actionscript 3.0 :: Multiple Videos / One Player AS3

Jan 23, 2012

I was following a tutorial, but it was a little bit limited in options.So what I wanted is to have a few buttons and when we clicked on them they would play a different video. I found the cove above, but I wanted it to have at least one or two extra things.For example I didn't wanted the video to start immediately without any click on the button.And I would like to have a close button that would remove the video player from stage (I tried some things, but the best I got was only removing the video player but I could still ear the video playing).[code]

View 1 Replies

ActionScript 2.0 :: FLVPlayback After Multiple Runs?

Jul 13, 2011

I am working on a piece of software that was written by someone else (that person is no longer available, but part of my job is repairing/maintaining this software).The software has multiple pages, each is a swf that calls loads and plays an FLV file. I've noticed that the audio is inconsistent after multiple runs.For instance, I'll repeatedly run the code in the Flash player by pressing CTRL + E in Adobe Flash (so no html yet). No changes to the code or anything, just play once, close the Flash player, immediately play again, close, and so on. The first few times, the audio loads and plays with no problems. After a few runs, I've noticed that the audio no longer plays.

I put in trace statements to see the state of the player content, and while when it runs correctly, I'll get the usual "playing", "connectionError", etc., on the times when audio does not play at all, the state is "undefined," like the player content was not created.Again, to clarify, this happens with no change in code or file locations. And the problem is always apparent as soon as I run the swf, because on the first page the state is "undefined" if the audio doesn't play (so in other words, it's not like one particular page breaks it partway through). From what I see there is also no persistent data that should carry over from one execution to the next.

View 0 Replies

ActionScript 3.0 :: FLVPlayer With Multiple Videos - Via Buttons?

Feb 9, 2011

I have my stage with the FLVPlayer and its easy enough to get it to play one video, but I have a series of buttons on the right hand side (day1, day2, day3.. etc).How can I go about getting a button click to change the FLV srouce and begin playback? And do I need to stop the loading of the previous video, or is that handled automatically?

View 1 Replies

Professional :: Best Option For Playing Multiple Videos?

Oct 4, 2011

I'm tweaking a flash website for a freind and he wants to have some videos play from a page. There are 25 files and ideally I want to achieve the 'Lightbox' look so that the browser window dims and the video plays over the top. After looking around I haven't found any easy solutions.What is the best way to achieve this, bearing in mind I shall have all these buttons on a page and want to have the video 'float' on top of the actual site?I'm relatively new to this although a long standing flash user when it comes to animation etc - not great on scripting.

View 1 Replies

Load Multiple Flv Videos Using FileReferenceList Class

Jan 8, 2011

Following is my code for loading one video using FileReference class and it works fine [code]...

then after this, the file.name and file.size goes to mxml page and the video is displayed on stage with name and file size but the samething i want to do with FileReferenceList class, i am solving this problem from last 2 weeks but cant.

View 1 Replies

ActionScript 3.0 :: Multiple Videos Playing In Order

Feb 3, 2009

I have 5 videos that all have separate buttons to play each one individually...however, I cannot figure out how to make the 5 play back to back if you are to click a "Play All" button. I figure this is something that needs to be coded...so I thought I should probably ask here. This is using AS 3 and Flash CS4.

View 9 Replies

ActionScript 3.0 :: Call Videos On Multiple Buttons?

Mar 11, 2011

In my main movie clip there is 4 buttons with on hover effects. here is the code...

stop();
//trail_thumb1//
trail_thumb1.addEventListener(MouseEvent.MOUSE_OVE R, homehover1);
function homehover1(event:MouseEvent):void {

[Code].....

its working correctly but if i click on second buttons. second swf is appear with video but my 1 swf is still working behind the scene.

View 1 Replies

ActionScript 3.0 :: How To Call Videos On Multiple Buttons

Mar 11, 2011

In my main movie clip there is 4 buttons with on hover effects. here is the code...

[Code]....

its working correctly but if i click on second buttons. second swf is appear with video but my 1 swf is still working behind the scene..

View 0 Replies

ActionScript 3.0 :: Flvplayback Component Viewing Multiple Flv's?

May 14, 2009

i have set up a flvplayback instance and when a button is clicked i want it to load in and play a new flv
 
i have the following code:
 
// Add FLVPlayback Class (required for Playing flv's)import fl.video.*;// Create a new FLVPlayback object to hold the video var myVideo:FLVPlayback = new FLVPlayback();// set the width of the videomyVideo.width = 544;//set the video's widthmyVideo.height = 304;//set the video's heightmyVideo.x = 200;//set the video's horizontal positionmyVideo.y = 88;//set the video's vertical position// set the video source to the current video stored in the variable myFlvmyVideo.source = myFlv;// put the video on the stageaddChild(myVideo);
 
all this works fine and the first flv loads and plays fine no problems

[Code]...
 
I know how to use netstream but unless there is a way to use skins with it its not the way i want to go.

View 3 Replies

ActionScript 3.0 :: Cannot Have Multiple Flvplayback Instances Using Fullscreen

Feb 20, 2012

I am using AS3 with CS5. I created a flash project which contains multiple instances of flvplayback. Each plvplayback plays a separate video and each has its own controls. It all works fine when playing, pausing and controlling the videos. The problem is with the fullscreen functions. If I click the fullscreen button on the first flvplayback, it makes the second video go full screen. If I click the second video fullscreen button, it opens fine into its own video except when I do it three to four times. After three to four times of toggling fullscreen on the second video, it opens the first video into the browser larger than its original size but not full screen. I have tried recreating the flvplayback instances by re-importing the video files. Each flvplayback has been given its own instance name. Even when I create a separate custom button, not part of flvplayback, and give it the command to launch fullscreen on the first video, it still opens the second video to fullscreen. When I use just one video and remove the other ones, toggling fullscreen works fine for that particular video.

View 1 Replies

ActionScript 3.0 :: Stopping Multiple Instances Of FLVPlayback?

May 8, 2008

i have one FLVPlayback instance on the Video page and another on the Discography page...when i navigate away frm either of the two pages, i need the loaded flv to stop playing... so i've used the following code for my navigation buttons : (the navbar is a movieclip on the maintimeline...video_mc and discog_mc are also on the main timeline... flvPlayer is the instance name of the FLVPlayback component..)

Code:
stop();
//setting destination frame label variable
var destin:String;

[Code]....

View 3 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved