Tagged Questions

5
votes
3answers
6k views

Flex: Dynamically create a preview image for a video

I'm using the VideoDisplay to play flv's, mov's, and mp4's and everything is working great. They are all being loaded via progressive download and are not being streamed. What I'd like to do is to ...
1
vote
1answer
174 views

Flex3 VideoDisplay to Flex4 VideoDisplay

My Flex3 VideoDisplay is shown below: <extensions:SmoothVideo id="vidWin" volume="1" playheadUpdateInterval="10" playheadUpdate="onPlayheadUpdate();" ...
1
vote
2answers
551 views

FLEX, VideoDisplay: how to autoload without autorunning

I'm using videoDisplay MXML component for my Flex app. I would like to autoload videos (in order to display the first frame) without automatically run them. What's the easiest way to do it ? thanks ...
1
vote
2answers
1k views

How to take screenshots of a Flex Spark VideoDisplay?

I want to build a component, where the user can play a video in a Flex Spark VideoDisplay. There will be a button and whenever the button is pressed, I want to save the current time of the ...
0
votes
1answer
69 views

Seek playhead to specific location in Flash Video?

If you load up a FLVPlayback component in Flash or VideoDisplay in Flex and try to seek to a specific location or set playheadTime to a specific location, the movie always rounds up or down by very ...
0
votes
1answer
129 views

Flex: Restore Spark VideoDisplay stream

EDIT If someone can at least tell me how to receive an event when the streams disconnects that would be great. The documentation for this control is simply horrible. I have an application that will ...
0
votes
0answers
34 views

streaming video using VideoDisplay in flex

i use this tag: <mx:VideoDisplay id="myVid" bottom="0" width="100%" height="100%" live="true" autoPlay="true" source="http://localhost:5080/oflaDemo/{myvideo}"/> but the only thing i get is ...
0
votes
1answer
88 views

resize video child of VideoDisplay to the same size

i have the following code to play a video stored in the media server: <?xml version="1.0" encoding="utf-8"?> <s:Group xmlns:fx="http://ns.adobe.com/mxml/2009" ...
0
votes
3answers
87 views

get dimension of video in VideoDisplay

I'm trying to get the dimensions of the videosource in a VideoDisplay: private function loadMovie () : void { vid = new VideoDisplay(); vid.source = _item.itemLg; vid.play(); ...
0
votes
0answers
156 views

adobe Flex 4 spark VideoDisplay - Maintain videoDisplay time on different video source

Hi I am having a spark videoDisplay control and I have two bttons on clicking button 1 I am changing the source of the VideoDisplay to video1.flv and on clicking button 2 I am chinging the source to ...
0
votes
1answer
75 views

realtime effects on a video component

I have a flex 4.5 application that uses a mx:VideoDisplay component to display the webcam. how can I add realtime effects to that VideoDisplay component ? for example: changing colors, particle/grain ...
0
votes
2answers
181 views

Flex Spark VideoDisplay: rewind seek backward

How could i rewind video back for, let's say, 5 seconds? I tried player.seek(player.currentTime - 5) but this gives no effect except small pauses (like freezing while seeking - while left arrow key ...
0
votes
1answer
225 views

Buffering in Video Display in Flex

I'm new to Flex and currently working on the Video Component in Flex. The problem is: Buffering starts only after the specified time. So, if i have specified the Buffer Time to be 2 s, then the video ...
0
votes
0answers
258 views

Plugin Container for Firefox crashes when using videodisplay

I'm using mx:videodisplay to play video files (.flv and .mp4), and it works fine. It does what it's supposed to do - it plays the video file perfectly. But every time I reload the page, the source ...
0
votes
2answers
302 views

Flex 4: VideoDisplay can play MP3 files?

Is it possible to play MP3 files using the VideoDisplay or VideoPlayer components? Thank you.
0
votes
0answers
150 views

Flex 4 - Does VideoDisplay dispatch an event when an invalid file (inexistent) is set as source?

I am looking to catch files that do no exist on the server when their path is set as source for the VideoDisplay component in Flex 4. And generally speaking, is there a way of determining if a file ...
0
votes
1answer
524 views

VideoDisplay cannot load local flv files

I have noticed that I have to put flv files in the same or sub-directories of the application file, for example myproject/bin-debug/flvs/1.flv, and use videodisplay.source="flvs/1.flv" to load. If I ...
0
votes
2answers
481 views

Progress-bar (Video Preloader)

I have a spark component VideoDisplay which displays a video. I want to add a ProgressBar to it which will show load progress of the video and when the video is loaded ProgressBar to disappear. How to ...
0
votes
1answer
176 views

Flush Flex VideoDisplay request queue

When a command like play(), pause(), or seek() is called while the videoDisplay is unresponsive it gets put on a queue, how do I flush this queue so the most recent command is the only command ...
0
votes
1answer
219 views

Flex VideoDisplay reconnect after idletimeout

I have a VideoDisplay that is able to connect to a source and play. After the connection times out I want the connection to be re-established when my play button is clicked. Right now when I reset ...
0
votes
1answer
107 views

Random point on VideoDisplay isn't accurate enough

For a schoolassigment me and some buddies of mine are creating an application that is showing many similarities with the C-Mon & Kypski musicvideo on www.oneframeoffame.com. The application is ...
0
votes
1answer
1k views

Flex - does anyone have an example of the use of the VideoDisplay control events

The Flex 3 docs are fairly basic. Can someone post a more complete example that uses the control's events? I'm still trying to get my head around ActionScript events.