IDE :: CuePoints Work In Some FLVs, Not Others?

Mar 12, 2009

I am having an issue with setting CuePoints in a FLV that is not natively FLV. My code works on files that were exported directly from AfterEffects to .FLV. However, some of the video files I am working with are originally .MOV files. When I pass them through either Adobe or Flash Media Encoder, the CuePoints are not recognized. It seems very strange.

Here is the code, although the code works perfectly with native FLVs, so I don't think that is the problem. I'll put it on here just in case.

Code:
myFLVPlayBack.onRollOver = function () {
playHover.gotoAndPlay(2);
}

[Code].....

View 1 Replies


Similar Posts:


ActionScript 1/2 :: FLVs Not Work From A HD Like They Work On DVD?

Oct 15, 2010

I have a completed project (AS2) that contains a lot of FLVs.  I burned it onto DVD and it works great on Mac (guide.app) and PC (guide.exe).Here's the web version of the project.http:[url]....Now, months later, I have to provide the project with source files (FLA's) and some other stuff  - so I got an external HD, copied the files from the working DVD onto it.  Running the guide.exe off of the external (connected to WinXP SP3) works just like running it off the DVD  -  EXCEPT for the FLVs which simply to not appear.
 
http:[url]...Everything up to that step works:  When I click on "guide.exe", the "splash screen" opens showing the title and 4 buttons.  These buttons are to choose a language and they work.When I select a language and click its button the GUI for the language with menus appear and they work.  When I click on a topic from the menu, the topic's skin appears but the video inside the skin doesn't play.  Everything works but the FLVs.
 
Even weirder - If I use VLC Player to open an FLV directly - the FLV will play.  That tells me there is some path issue but how can a path change when it's compiled into the SWF?  Besides - the paths from swf to flv has not changed when I copied all the files to the external.why the FLVs will not play on the external the same way they play when on the DVD?

View 9 Replies

ActionScript 3.0 :: F4v Cuepoints Not Working

Aug 10, 2010

I have an object that when I use an flv with a CuePoint, it all works fine. When I changed the flv out with an f4v, also with a CuePoint, the code does not work.[code]

View 2 Replies

ActionScript 3.0 :: Cuepoints Without Flv Component?

Aug 14, 2009

I'm creating a video player with closed captioning and navigation. Is it possible to as AS cuepoints to a video object and not a component.
 
Like this:
 
//Create video screen and position it
var vid:Video = new Video(320, 240);
vid.attachNetStream(ns);

[Code].....

View 2 Replies

ActionScript 2.0 :: Interacting With FLV Cuepoints?

Oct 22, 2009

First, I should mention that I haven't used Flash for years and I'm feeling a bit out of my depth.I've created an offline presentation for a client using ActionScript 2, authored with Flash CS3 (to run off a laptop).The presentation has an FLV (currently attached to the stage via the FLVPlayback component) which must play through it's entirety and at the end present 3 questions. Each question will present an answer once clicked. The user will then be presented with a "watch again" button which should restart the FLV from the beginning.

The second time the FLV plays back it should pause at 3 key points and present the user with questions and answers as before. Once the user has dealt with the Q&A's they should see a button to continue and the FLV should continue playing from where it was paused.I'm happy making the various interactive Q&A's, but have no experience of interacting with video. After a brief search in the web "cue points" look like the best tool for the job.

View 9 Replies

ActionScript 3.0 :: Add Cuepoints After Setting Source

Dec 2, 2010

I had to add the cuepoints after setting the source.Iam trying to use cuePoints on a flvPlayer component but it wont work for me.I have a flvPlayer 2.5 in my timeline (vid_mc) and this code:[code]

View 1 Replies

ActionScript 3.0 :: How To Create Reactions To CuePoints

Dec 14, 2010

I am having some issues creating reactions to CuePoints when using NetStream();. I can get what I want to work when the video is embedded directly onto the stage by using the following code:

vid.addEventListener(MetadataEvent.CUE_POINT, cp_listener);
function cp_listener(eventObject:MetadataEvent):void {
obj = eventObject.info.parameters;
for (key in obj) {
if (key == "CuePointName1") {
[Code] .....

The trace statement is returning the name of the CuePoint correctly, but 4 times like this:
CuePointName1
CuePointName1
CuePointName1
CuePointName1
Which I assume is why the if statement isn't picking it up.

View 3 Replies

ActionScript 3.0 :: Receive CuePoints With FLVPlayback Component?

Jan 25, 2010

I've been trying to get cuepoints out of my flv video with the following code without success:

[Code].....

View 1 Replies

ActionScript 3.0 :: CuePoints Using FLVPlayback In Projector Executable?

May 26, 2010

I have a Flash CS3 project that uses the FLVPlayBack component to play 5 FLV files. Each of the files has between 1 and 15 navigation CuePoints embedded in the video (MOV files encoded using Flash Encoder).

When I test the app using Ctrl-Enter from the IDE all works fine.

When I test the published projector EXE on the hard disk all works fine.

When I burn all the files to CD-ROM and start the projector EXE not all is fine.

When I click on one of my buttons that will navigate to the desired cuepoint within the FLV, it acts like it is unable to find the cuepoint and thus goes to the end of the FLV file.This is very annoying and I can not find anything listed anywhere. I suspect it has something to do with buffering or something because the CD-ROM is slower than the hard drive.When playing the video all I am doing is:

vidPlayer.stop();vidPlayer.source = "name of flv file";vidPlayer.play();

When I navigate to the cuepoint I am using the following:

vidPlayer.seekToNavCuePoint(cueName);

View 1 Replies

Actionscript :: Professional : Flash CS5 Dropping Cuepoints?

Jun 29, 2010

I've just upgraded from CS3 to CS5 and have discovered an annoying issue with cue points. When I open an existing FLA that has a movie with actionscript cuepoints and try to replace it with another movie (an updated version), Flash drops all my cue points and I have to re-enter them. Is there some way to prevent this?

View 2 Replies

Professional :: CuePoints Not Working Properly Netstream?

Jul 15, 2010

Im trying to get cuepoints working on an old as2 project.I have a netstream video component and want the cuepoints embedded in the FLV to trigger buttons to appear. I have embedded them as Event Cuepoints. 
 
ns.onCuePoint = function(infoObject:Object){    trace(infoObject.name);    if(infoObject.name == "CP1") {         trace("yes working");    }}; 

[code]...
 
This shows all of the cuepoints within the FLV. I cant figure out how to change the code to trigger actions WHEN the FLV hits a Cuepoint.

View 2 Replies

ActionScript 3.0 :: Creating Video Object - How To Add CuePoints

Mar 9, 2007

My question deals with adding a cuepoint in actionscript 3 using code. In flash 8, I made use of the FLVplayback component which included a method addASCuePoint(). In Actionscript 3, I am now using the standard method of creating a video object, except i can't figure out how to use actionscript to add a cuepoint. In the AS3 LiveDocs entry for NetStream , it list only event and navigation as cuepoint types. Previously there was a third type of cuepoint: actionscript.

Code:
public function LoadVideo(){
var nc:NetConnection = new NetConnection();
nc.connect(null);
var ns:NetStream = new NetStream(nc);
var vid:Video = new Video(320, 240);
[Code] .....

I am guessing one option is to create an onEnterFrame function that compares the NetStream.time to each value in my cuepoint array, and then do a addEventListener(EventType.ENTER_FRAME, onEnterFrame); Although this might work it requires my application to loop through my cuepoint array every single frame, which isn't really efficient.

View 1 Replies

ActionScript 3.0 :: Create A Flv File Thats Got Multiple Event Cuepoints

Sep 20, 2010

I used After Effects to create a flv file thats got multiple event cuepoints. When i try to use these cuepoints in Flash, it says :

[Code]...

81.88 is the first position where two Cuepoints are set on the same point of time. I named them 81.88a and 81.88b in After Effects but it wont make a difference. Each of these points has some important parameters (cornerpoint data) so that i need them all.

View 1 Replies

ActionScript 2.0 :: Preloading FLV With Cuepoints - Animations Slow To Start

Jan 7, 2009

This is the first time I have used a FLV with cuepoints. I have a flv which loads into my swf which I have added cuepoints to on import. I have a series of buttons over the flv and when you rollover these you skip to various points in the flv. This works in principal but in reality it is a little slow, especially when it first loads. I am assuming this is because the FLV is still loading (although I am testing this locally and it will never be used on the web). If this is the case I think I need to make sure the entire flv is loaded before i show it. Secondly, is this the reason the rollover animations are slow to start or is this an inherent problem when using FLV? Is there anything else I can do to make it more responsive?

View 3 Replies

ActionScript 3.0 :: Skipping Between CuePoints In Custom Video Class?

Apr 25, 2009

I am creating a custom video class and was wondering is anyone knows how to turn cue points embedded in an flv into a time in an array.

I have tried the following but, although it doesn't give me any errors, it simply rewinds 1 second rather than skipping back to the correct cuePoint. I can't figure out why? :

Code:
public var _durationArray:Array = new Array();
public function makeArray(info:Object):void {
for (var i:Number = 0; i < info.cuePoints.length; i++) {

[Code].....

This previous code is amongst other code, which makes does things. Then in a new class I call it inside a function (which triggers fine):

Code:
_vidStream.seek(_durationArray[0].time);

View 1 Replies

ActionScript 3.0 :: Create A Function Which Will Search The Cuepoints For A Specific Time?

May 24, 2010

I have the following XML file structure:

Code:
<VideoData>
<CuePoints>[code]....

And I am trying to create a function which will search the cuepoints for a specific time, I'd also like the function to be re-useable, so I could just feed it a xml tree path and a search term then it would return a reference to the matching node.So far I have only managed to return what is in the node:

Code:
public class Search
{
public static var returnData:Array = new Array();[code].....

View 2 Replies

Media Server :: Read Or Extract Cuepoints Created Live With Nestream.send()?

Sep 17, 2010

Im doing live streaming directly from webcam like Ustream.TV. Im  using Flash Media Server 3.5, and I record cuepoints of broadcaster with  the method ns = new NetStream(); ns.send('functionName' , 'value'); I publish the content and record it in a .flv file. However when I  download this FLV file and extract the metadata with tools like  FLVTOOL2, or FLVMETA, the cuepoints that I recorded with ns.send()  method doesn`t show. I know they are there since when I play the FLV file in another client, I  can receive the calls for the 'functionName' in the exact time that I  call while recording. What I`m doing wrong? I would like to encode recorded video with Flash Media Encoder and  insert into it CuePoints that can call to the same function that I do  with live streaming. To do that, first I need to know how the CuePoints  are created and fixed into the FLV file that I record directly from  webcam. I need to know how they are stored to do it manually in Flash  Media Encoder.

View 19 Replies

CS3 : Too Many FLVs Loading?

Jan 22, 2010

I have one .swf that references several FLVs in a separate folder. That .swf is embedded several times on one webpage and each one references a different video.My only problem is that they all load when the page loads. I would like the first video to load automatically (not play automatically, just load) and the rest to only load when they are clicked.I have been trying to control the buffering with JavaScript where the .swf are embedded but have been unsuccessful.I have also fooled around with the buffer time parameter of the FLVPlayback component and still no luck.

View 3 Replies

ActionScript 1/2 :: FLVs Will Not Play From CD On XP

May 7, 2010

I have a Flash CS3/AS2 project containing swfs with FLVs. When I Publish the "START.fla" which pulls all the files together, I tell Flash to create a "Projector" for Mac and an "EXE" for Windows. On my (OS X) desktop this Projector thing works perfectly...swfs open from a menu in my GUI, the swfs reference flvs and the flvs play. The swfs are in the same folder as their flvs.

If I put this whole folder full of files over to the WinXP box (via shared folder), double click on the EXE - no flvs will appear. Everything "leading up to" an flv works - but where there should be a video there is none. Moving on I burn the project onto a CD. When I open the CD on the Mac and find the Projector - I double click and it still works great. Everything flawless.

I put that same CD into the WinXP (SP3) box, find the EXE and double click. As I expected - no improvement, the GUI opens,the swfs can be launched from the menu, but no flvs appear. I get the swf that references the flv - but no flv. I even waited extra time thinking it would eventually happen. No. Why it should work on Mac and not on XP? Where should I look for the glitch?

View 1 Replies

ActionScript 3.0 :: Detect Cuepoints Playing From FLV Movie That Is Playing From FLV Playback Component?

Oct 9, 2009

I was wondering, what was the best way to for actionscript 3.0 to detect cuepoints playing from a FLV movie that is playing from an FLV playback component?

View 1 Replies

ActionScript 2.0 :: Flash 8 - How To Play FLVs One After Another

Apr 3, 2009

How to play flv's from Action Script2 one after another? Let's say I have 3 clips .flv. And I want to play them one after another.
In case I'm writing this:
myFLVPlybk.contentPath = "1.flv";
myFLVPlybk.contentPath = "2.flv";
myFLVPlybk.contentPath = "3.flv";
Only the last clip is playing actually. How can I implement "one after another"?

View 1 Replies

ActionScript 3.0 :: Play Two FLVs Continuously One After The Other?

Apr 23, 2009

i need to play two FLVs continuously one after the other - you might think it's an easy task, but every time i try to do that there is this annoying gap between the videos that flickers, and it's have to be seamless.the ON_COMPLETE event worked poorly, so im sampling the playheadTime of the first FLV and test it for it's end, minus a certain offset value.. but the lag is still there.i ever rewrote the FLVPlayback component to my own NetStream object extending, hoping it will take less run-time memory consuming but noting...and the thing is,the lag sometimes happens, and sometimes don't..when trying to sample the gap it brings me different values every time, but there is no way to correct it,because changing the playheadTime causing a random, few milliseconds lag itself, and we are back to square one..

View 3 Replies

Implement Closed Captioning Into FLVs?

Feb 29, 2008

implement closed captioning into my FLVs. I have successfully set up the FLVplayback component, and the FLVplaybackCaptioning component to work. That's not the issue. The issue is, once I have my swf, flv, and xml files (needed to successfully use CC in a FLV), I need to insert that .swf into my captivate project.

It appears to insert/import OK, but once I publish the project, the swf does not appear, and in fact the FLV icon sits on the slide rapidly blinking. Neither the video plays, nor can I even see the playback component/closed caption component (swf) that holds the FLV.

All paths are relative, so the only things I can think of that may be causing the issue are:

a)Captivate doesn't support CS3 FLVPlayback or
FLVPlaybackCaptioning components

b)Since Captivate allows importing of FLV files directly, running the FLV through the component's swf is a problem

c)The hierarchy of files needed for the Closed Captioning FLV (xml, flv, swf), interfere with compiling the new Captivate .swf
upon publishing I've also been told that the FLV captioning component only works in Actionscript 3.0 which runs on Adobe Virtual Machine 2.Captivate publishes .swf files using Actionscript 2.0 which runs on Adobe Virtual Machine 1. Therefore, what I need to do will not work.

View 4 Replies

ActionScript 3.0 :: Get First Of Several External FLVs To Play?

Dec 14, 2009

I have five videos that play on command when you click one of five buttons.  I want to make two enhancements to this script and I need an expert's help (because clearly I'm clueless!).

#1 - Even though I have the vidPlayer (aka flvPlayback component) setting set to "true" for autoplay, the area where the videos are set to play remains blank until clicking on one of the buttons. How can I get the first video to truly "autoplay"?

#2 - I would like to have the videos play in sequential order when the last video is finished, then stop after the last (fifth) video has played.  How can I get them to play back-to-back?[code]...

View 5 Replies

ActionScript 3.0 :: Play FLVs In Sequence Without A Gap Between?

Jul 22, 2010

I have single FLV file which is quite big. I want to encrypt it and decrypt but it takes too long. My best idea was to split video into smaller videos using third party software and apply my encrypting and decrypting functions to each one separately. Unfortunately I have a problem with gaps between loaded FLV files. Video has to be smooth without any pauses.

View 0 Replies

ActionScript 3.0 :: Volume Levels Between Flvs Are Very Different

Jan 31, 2011

I made a video player that plays through flv videos one after another for an in-store display. My problem is that volume levels between flvs are very different, one flv volume levels would be louder than other flvs vice versa.So I'm thinking if I could equalize the volume levels using sound channel but have no idea where to start. Can anyone point me in the right direction on how to properly adjust/equalize volume levels so they all sound the same?

View 4 Replies

ActionScript 2.0 :: Getting Flvs To Play Incrementally?

Jan 2, 2007

I am having trouble getting my flvs to play incrementally. I can only get it to play the last flv in my array.

Code:
_root.stop();
//
vidList = new Array("item_overview_ae476x264768K.flv",

[Code]....

View 4 Replies

ActionScript 2.0 :: How To Load Multiple Flvs

Dec 20, 2007

I have 3 videos to load into a single flv component. I want to be able to load these movies randomly. How would I go about doing that? I have no idea how to start

View 1 Replies

ActionScript 2.0 :: Resize Flvs In Flash?

Apr 23, 2008

I'm adding a "view large" capability to my video player, however I have noticed that if I straightforward code

on press. got twice as big,

the color, tone , sharpness is greater than if I..

I'm using flash tween I don't know if there is a better tweener out there?

View 7 Replies

ActionScript 2.0 :: Loadin Up A Bunch Of FLVs

May 2, 2008

I'm tasked with creating a site that runs full-screen video in the background at all time. I have it set up in XML in "batches" of 10-second clips that correspond to navigation sections. Currently the video just selects a random clip out of that batch once the current video has stopped playing, so it gets a random chain of videos.Of course, when it gets onto the crappy server, my framerate plummets (first disappointment) and i get a little pause in between clips (second disappointment). What I'd like to do is start loading the videos once you get to the site and hope that they're cached by the time they come up. My first thought is to put those batches into shuffled arrays rather than pulling them randomly at load, so I can at least have a predictable order.

View 4 Replies







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