Re: [Flashcoders] seek() in VideoPlayer class

2007-04-28 Thread Flash Coder
I created my own with Netstream and it worked like a charm. Thanks! /Jamie On 4/24/07, Steven Sacks <[EMAIL PROTECTED]> wrote: As noted in the method documentation, seek() does not go to the timecode you pass. It goes to the nearest keyframe to the timecode you pass. Head over to YouTube and

Re: [Flashcoders] seek() in VideoPlayer class

2007-04-23 Thread Steven Sacks
As noted in the method documentation, seek() does not go to the timecode you pass. It goes to the nearest keyframe to the timecode you pass. Head over to YouTube and drag the seekbar around on a video and you'll see it jump between keyframes (you can see the time jump to those keyframes while

Re: [Flashcoders] seek() in VideoPlayer class

2007-04-23 Thread val
Does this bug also affect seek calls that are not made on some kind of interval? I'm seeing some odd behavior when calling seek() on an FLVPlayback component right now. If it's due to this bug, that would be good to know. If you need more info: I'm calling seek() on a button release and at times

RE: [Flashcoders] seek() in VideoPlayer class

2007-04-23 Thread Ash Warren
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kelly Smith Sent: Monday, April 23, 2007 1:31 PM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] seek() in VideoPlayer class I'd like to essentially echo what Mr. Sacks says: Use the NetConnection and NetStream classes to roll

Re: [Flashcoders] seek() in VideoPlayer class

2007-04-23 Thread Kelly Smith
I'd like to essentially echo what Mr. Sacks says: Use the NetConnection and NetStream classes to roll your own player. Not only can you employ bug-free seek supporting, but you can also create a faux-streaming player with a little java or php that will open the doors to many possibilities. It wil

RE: [Flashcoders] seek() in VideoPlayer class

2007-04-23 Thread Ash Warren
Behalf Of Jon Bradley Sent: Monday, April 23, 2007 12:37 PM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] seek() in VideoPlayer class On Apr 23, 2007, at 1:08 PM, Ash Warren wrote: > Why do I feel like it's a constant 1 step forward 2 steps back with > these >

Re: [Flashcoders] seek() in VideoPlayer class

2007-04-23 Thread Jon Bradley
On Apr 23, 2007, at 1:08 PM, Ash Warren wrote: Why do I feel like it's a constant 1 step forward 2 steps back with these new releases??? Well.. you are running Vista ... :) - jon ___ Flashcoders@chattyfig.figleaf.com To change your subscription

RE: [Flashcoders] seek() in VideoPlayer class

2007-04-23 Thread Ash Warren
ge- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Steven Sacks Sent: Monday, April 23, 2007 11:58 AM To: flashcoders@chattyfig.figleaf.com Subject: Re: [Flashcoders] seek() in VideoPlayer class The FLV component (both 7 and 8) are totally messed up when it comes to calling seek man

Re: [Flashcoders] seek() in VideoPlayer class

2007-04-23 Thread Steven Sacks
The FLV component (both 7 and 8) are totally messed up when it comes to calling seek manually on an interval or enterFrame. I mean, it's pretty ridiculous that such an obvious bug got through QA. Allegedly, there is an undocumented public method that exposes the true seek method of the FLVPla

RE: [Flashcoders] seek() in VideoPlayer class

2007-04-23 Thread Karina Steffens
Hi Jamie, Assuming you're rolling out your own seek slider, I suggest you call the seek() method after the user released the slider, instead during the dragging process. This will eliminate the multiple calls and make it much smoother. If you really need the sliding to happen in real-time, you cou