Re: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-30 Thread Peter B
From the article Sam links to: Navigation cue points are used for navigation and seeking, and to trigger ActionScript methods when the cue point is reached. Embedding a navigation cue point inserts a keyframe at that point in the video clip to enable viewers to seek to that point in the video.

Re: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-30 Thread Karl DeSaulniers
Well in that case, how would you create the navigation without increasing the size of the flv? If he only has two frames, can he set cue points for a time based navigation instead of frame based? Karl Sent from losPhone On Jul 30, 2009, at 7:53 PM, Peter B pete...@googlemail.com wrote:

Re: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-30 Thread Peter B
You can't. Setting cue points for time based navigation inserts a key frame. You can only seek to key frames. It's all covered in that article, specifically: Specify the type of cue point you want to embed. You can embed either a navigation or event cue point. * Event cue points are used to

RE: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-30 Thread Barry Hannah
...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Peter B Sent: Friday, 31 July 2009 1:29 p.m. To: Flash Coders List Subject: Re: [Flashcoders] Seek bar not working with FLVPlayback Component? You can't. Setting cue points for time based navigation inserts

Re: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-30 Thread Karl DeSaulniers
...@chattyfig.figleaf.com ] On Behalf Of Peter B Sent: Friday, 31 July 2009 1:29 p.m. To: Flash Coders List Subject: Re: [Flashcoders] Seek bar not working with FLVPlayback Component? You can't. Setting cue points for time based navigation inserts a key frame. You can only seek to key frames. It's all

Re: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-30 Thread Peter B
Sure Barry, that's the first type of cue point described in the article. You can't seek to an event cue point though. Cheers Karl ;) ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-30 Thread Sam Brown
great threat, thanks for all the input - event cue points == good times..great for triggering transitions and such..(e.g. rendered video from AE) myVideo_mc.addEventListener(MetadataEvent.CUE_POINT, onCuePoint); function onCuePoint(event:MetadataEvent):void { trace(Elapsed time in

Re: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-29 Thread Karl DeSaulniers
Yes. On Jul 29, 2009, at 3:14 PM, TS wrote: Anyone have any ideas why the playback seek bar isn't working? The video was encoded using FFMPEG. http://labs.cleargraphix.com/AS3/flvplayer/ Does it need to be encoded a certain way with cue points or something? Thanks ahead, T

RE: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-29 Thread TS
: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl DeSaulniers Sent: Wednesday, July 29, 2009 3:09 PM To: Flash Coders List Subject: Re: [Flashcoders] Seek bar not working with FLVPlayback Component? Yes. On Jul 29, 2009, at 3:14 PM, TS wrote

RE: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-29 Thread TS
...@chattyfig.figleaf.com] On Behalf Of Karl DeSaulniers Sent: Wednesday, July 29, 2009 4:05 PM To: Flash Coders List Subject: Re: [Flashcoders] Seek bar not working with FLVPlayback Component? Um. I am not sure dynamically, but my experience is to make your cue points in your movie then export your movie. Import

Re: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-29 Thread Peter B
From what I can see TS the issue isn't cue points but keyframes. As in, there are none in your FLV except one at the start and one at the end. FlashPlayer can only seek to an actual key frame, hence the behaviour you are seeing. AFAIK, the only solution to the issue is to re-encode the video, this

Re: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-29 Thread Sam Brown
Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karl DeSaulniers Sent: Wednesday, July 29, 2009 3:09 PM To: Flash Coders List Subject: Re: [Flashcoders] Seek bar not working with FLVPlayback Component? Yes. On Jul 29

Re: [Flashcoders] Seek bar not working with FLVPlayback Component?

2009-07-29 Thread Karl DeSaulniers
] Seek bar not working with FLVPlayback Component? Yes. On Jul 29, 2009, at 3:14 PM, TS wrote: Anyone have any ideas why the playback seek bar isn't working? The video was encoded using FFMPEG. http://labs.cleargraphix.com/AS3/flvplayer/ Does it need to be encoded a certain way with cue