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

[Flashcoders] seek() in VideoPlayer class

2007-04-23 Thread Flash Coder
Hi, I am building my own flv videoplayer with the mx.video.VideoPlayer class. I have run into a problem with my draggable slider for seeking back and forth my movie. The problem is: I'm calling the seek() method every time the mouse's x position change. It works fine if I just click around

RE: [Flashcoders] seek() in VideoPlayer class

2007-04-23 Thread Karina Steffens
new concepts, timeless design www.neo-archaic.net -Original Message- From: Flash Coder [mailto:[EMAIL PROTECTED] Sent: 23 April 2007 13:36 To: Flashcoders mailing list Subject: [Flashcoders] seek() in VideoPlayer class Hi, I am building my own flv videoplayer

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

RE: [Flashcoders] seek() in VideoPlayer class

2007-04-23 Thread Ash Warren
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 manually on an interval

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
] On 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 new releases

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

RE: [Flashcoders] seek() in VideoPlayer class

2007-04-23 Thread Ash Warren
] [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 your own player

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

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