[flexcoders] flv video stepping

2007-04-25 Thread john_69_11
I've created a flv video player and have a step button to slowly move through the video. This step button is really just a hack, on mouse down it plays the video, on mouse up it pauses. Only problem is that the playheadTime from the video is being reported erratically when using this function.

[flexcoders] Re: Flex Fullscreen Apps

2007-02-27 Thread john_69_11
Not browser resizing, the new fullscreen option stage.displayState = StageDisplayState.FULL_SCREEN; Figured this out by just setting the stage.scaleMode = EXACT_FIT Works perfect now --- In flexcoders@yahoogroups.com, Tom Chiverton [EMAIL PROTECTED] wrote: On Monday 26 Feb 2007, john_69_11

[flexcoders] Flash Video Player

2007-02-27 Thread john_69_11
I've created a flv video player and have a step button to slowely move through the video. This step button is really just a hack, on mouse down it plays the video, on mouse up it pauses. Only problem is that when reporting the playheadTime from the video. When I play the video normally vs when

[flexcoders] Flex Fullscreen Apps

2007-02-26 Thread john_69_11
Hi, I have a flex app that I want to be able to make fullscreen and was having some problems with it. I looked at the tutorial on adobes site, and can get full screen to work but the components in my app don't change size when going into fullscreen mode. I've found that setting the height and

[flexcoders] navigateToUrl Problem

2007-02-21 Thread john_69_11
using navigateToUrl like this: navigateToURL(new URLRequest(http://google.com;),_self); In firefox it opens in the same window fine, in IE it's opening a new window. How can I make this work in both?

[flexcoders] File Upload and Session

2007-02-16 Thread john_69_11
I'm trying to do a file upload to a server (running rails if that matters). When I upload the file it gets sent to the server fine, but gets it's own seperate session. There is also no way to pass a result (like the stored filename) back to flash. Does anyone know of a way to get around this?

[flexcoders] Re: FABridge

2007-02-01 Thread john_69_11
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of john_69_11 Sent: Friday, January 26, 2007 11:54 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: FABridge I was just wondering what the status for this next release

[flexcoders] Drag and Drop onto image

2007-01-29 Thread john_69_11
I have a Composite Actionscript component that has a Image object. I add an event listen to my component for DragEnter and when I run it from the Flex Builder it works fine, I get the event but when I deploy it to my application I don't get any Drag events. Does anyone know why this might be or

[flexcoders] Re: FABridge

2007-01-28 Thread john_69_11
@yahoogroups.com, David Mendels [EMAIL PROTECTED] wrote: Hi, expect a new build on labs very soon (within a week it is expected, but not guaranteed.) -David From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of john_69_11 Sent: Tuesday

[flexcoders] Re: Mouse Events

2007-01-22 Thread john_69_11
Just wondering if anyone has any idea what is going on with this. Am I doing something wrong or is this the normal behaviour? -John --- In flexcoders@yahoogroups.com, john_69_11 [EMAIL PROTECTED] wrote: I am noticing that when I have handlers on mouseDown, mouseUp and Click all three

[flexcoders] Mouse Events

2007-01-15 Thread john_69_11
I am noticing that when I have handlers on mouseDown, mouseUp and Click all three of these events are fired (in that order) no matter what i do. If i click on the object and hold it down for awhile the Click event is fired (as well as the others). If i click the object quickly all three events

[flexcoders] FABridge

2007-01-09 Thread john_69_11
Is anyone else out there using FABridge? I'm testing it out on Safari and getting js errors, has anyone else ran into this and possible solutions? The exception I get is: Value undefined (result of expression this.target.getRoot) is not object. FABridge.js, line 191 If I could get any help at

[flexcoders] Re: FLV Thumbnail

2007-01-09 Thread john_69_11
On 1/8/07, Collin Peters [EMAIL PROTECTED] wrote: This is the command that I use: ffmpeg -v 0 -y -i $OUTPUT_FILE -f mjpeg -an $HEADSHOT_DIR/$BASE_DIR/$jpg 21 I run that in a bash shell script which is invoked by the flash client via remoting On 1/8/07, john_69_11 [EMAIL

[flexcoders] FLV Thumbnail

2007-01-08 Thread john_69_11
I'm trying to generate an image thumbnail of an FLV and can't seem to find any way to do it. Only thing that people seem to be doing is creating a player for the flv, then pausing and stopping the stream - I want to grab an image of the one of the flv frames. I found a piece of code here:

[flexcoders] Re: FLV Thumbnail

2007-01-08 Thread john_69_11
wonderfully. -Andy On 1/8/07, john_69_11 [EMAIL PROTECTED] wrote: I'm trying to generate an image thumbnail of an FLV and can't seem to find any way to do it. Only thing that people seem to be doing is creating a player for the flv, then pausing and stopping the stream - I want to grab

[flexcoders] Re: flv progress bar

2007-01-04 Thread john_69_11
don't have time to organize in a simple example, but I hope to help you. On 1/3/07, john_69_11 [EMAIL PROTECTED] wrote: I'm using the VideoDisplay component so it works a little differently. If the video is paused calling pause again does nothing, you have to call play to restart

[flexcoders] Re: flv progress bar

2007-01-03 Thread john_69_11
22:49 heeft john_69_11 het volgende geschreven: Hi, I'm trying to put together an flv player with a progress bar and videodisplay object. I am using the progress event and when the player first loads the progress shows fine, but when i hit the play button (calling videoDisplay.play

[flexcoders] flv progress bar

2007-01-02 Thread john_69_11
Hi, I'm trying to put together an flv player with a progress bar and videodisplay object. I am using the progress event and when the player first loads the progress shows fine, but when i hit the play button (calling videoDisplay.play()) it throws away the buffer and starts over. This only

[flexcoders] flv player

2006-12-11 Thread john_69_11
I'm trying to make an flv player using Flex 2 and AS3, things are going pretty well. I want to add a stepping button so that you can step through one frame at a time (forward or back). Right now I've managed to figure out the frame using the framerate and total duration (this isn't perfect, but

[flexcoders] Re: FLV Duration

2006-12-06 Thread john_69_11
] On Behalf Of john_69_11 Sent: Tuesday, December 05, 2006 6:32 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: FLV Duration again, only works if the flv was encoded correctly with the metadata --- In flexcoders@yahoogroups.com, Matt Horn mhorn@ wrote: If you're

[flexcoders] Re: FLV Duration

2006-12-05 Thread john_69_11
on there that work with video. http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Cheers, Stace From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of john_69_11 Sent: Monday, December 04, 2006 4:13 PM To: flexcoders@yahoogroups.com

[flexcoders] Re: FLV Duration

2006-12-05 Thread john_69_11
= info.duration; fRate = info.framerate; totalBytes = info.bytesTotal; metaWidth = info.width; metaHeight = info.height; } john_69_11 said the following: Is there an easy way to figure out the duration

[flexcoders] Re: FLV Duration

2006-12-05 Thread john_69_11
-Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of john_69_11 Sent: Monday, December 04, 2006 4:13 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] FLV Duration Is there an easy way to figure out the duration of an FLV thati s being

[flexcoders] Re: flv playback

2006-12-04 Thread john_69_11
Of john_69_11 Sent: Sunday, December 03, 2006 10:39 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] flv playback I want to be able to play an flv file and provide controls to jump to a specific frame in the flv. Currently i am using the VideoDisplay, but everything it does

[flexcoders] FLV Duration

2006-12-04 Thread john_69_11
Is there an easy way to figure out the duration of an FLV thati s being played? I have been looking at the NetStream object and the onMetaData event, but it seems like the FLV does not always have the metadata set. The FLVs I want to play are created my other people, so there is no way to force

[flexcoders] flv playback

2006-12-03 Thread john_69_11
I want to be able to play an flv file and provide controls to jump to a specific frame in the flv. Currently i am using the VideoDisplay, but everything it does is based on times (playhead time). I noticed that actionscript 2 had controls such as flvplayback and objects like the videoplayer