[flexcoders] VideoDisplay - video is playing, but without audio

2010-03-04 Thread joyh2002
I use VideoDisplay to play videos in my Flex app. The videos are hosted in our local web server. The size of the video is around 10MB to 30MB. I need to play 60 to 80 videos throughout the app. The videos are playing fine, but the audio is missing after playing some videos - not reproducible

Re: [flexcoders] VideoDisplay - video is playing, but without audio

2010-03-04 Thread Brian Thompson
One of our projects has suffered from a similar issue. We're streaming audio from Flash Media Server, and sometimes the audio will cut out - we still get cue points embedded in the audio, the NetStream object doesn't register any errors, and the rest of the app acts like the audio ends at the

[flexcoders] VideoDisplay smoothing and autoPlay

2009-08-06 Thread grimmwerks
Well I've followed countless examples to add smoothing to flex by extending VideoDisplay, but for some reason setting the autoPlay to be false doesn't change the videoDisplay autoPlay. Anybody have any ideas? import flash.display.DisplayObject; import

Re: [flexcoders] VideoDisplay smoothing and autoPlay

2009-08-06 Thread grimmwerks
Ok I see in the original mx.controls.VideoDisplay it checks autoplay and either plays or loads the video -- however why can't I override this function? private function autoPlaying():void { if (_source) { // Start playing or loading. if

[flexcoders] VideoDisplay rewind

2009-04-14 Thread [p e r c e p t i c o n]
Hi all, Does anyone have a cool way to rewind a video using the VideoDisplay Object? thanks and many cheers percy k

[flexcoders] VideoDisplay

2009-02-27 Thread christophe_jacquelin
Hello, VideoDiplay is not displaying the video. I have try .mp4, .flv, .avi and .swf files. I have a black square. Could you send me the minimum basic code to display a video ? Thank you, Christophe,

[flexcoders] VideoDisplay and virtual keys

2008-09-17 Thread [p e r c e p t i c o n]
Hello Coders, I'm wondering if anyone has experience with using the VideoDisplay object to connect to an FMS server. The problem i'm facing is that i'm using virutal keys and thus need to be able to connect to an app on the server and not simply the media. Hope this makes sense... cheers percy

[flexcoders] VideoDisplay Object

2008-09-05 Thread [p e r c e p t i c o n]
Hi People,I'm resizing video display object in my app and the video itself isn't being resized...just the component...how can i change the size of the video itself. percy

[flexcoders] VideoDisplay play/pause button

2008-09-05 Thread sleekdigital
To make a simple play / pause button I bind the selected state of the button to the playing property of the VideoDisplay component. This works fine with progressive video, but for some reason when using streaming video the binding does not work correctly. Most of the time it does not set the

Re: [flexcoders] VideoDisplay Object

2008-09-05 Thread Mario Falomir
Hi percy, I used its width and height property and everything resize fine... --- On Fri, 9/5/08, [p e r c e p t i c o n] [EMAIL PROTECTED] wrote: From: [p e r c e p t i c o n] [EMAIL PROTECTED] Subject: [flexcoders] VideoDisplay Object To: flexcoders@yahoogroups.com Date: Friday, September 5

Re: [flexcoders] VideoDisplay Object

2008-09-05 Thread percepticon
: [flexcoders] VideoDisplay Object Hi percy, I used its width and height property and everything resize fine... --- On Fri, 9/5/08, [p e r c e p t i c o n] [EMAIL PROTECTED] wrote: From: [p e r c e p t i c o n] [EMAIL PROTECTED] Subject: [flexcoders] VideoDisplay Object To: flexcoders@yahoogroups.com

Re: [flexcoders] VideoDisplay Object

2008-09-05 Thread Mario Falomir
PROTECTED] [EMAIL PROTECTED] Subject: Re: [flexcoders] VideoDisplay Object To: flexcoders@yahoogroups.com Date: Friday, September 5, 2008, 4:04 PM So am i. I made it smaller and the video itself stays the same size but the component shrinks and displays scrollbars

Re: [flexcoders] VideoDisplay Object

2008-09-05 Thread Igor Costa
=0 maximum=20 snapInterval=1/ /mx:Application --- On *Fri, 9/5/08, [EMAIL PROTECTED] [EMAIL PROTECTED]* wrote: From: [EMAIL PROTECTED] [EMAIL PROTECTED] Subject: Re: [flexcoders] VideoDisplay Object To: flexcoders@yahoogroups.com Date: Friday, September 5, 2008, 4:04 PM So am i. I made

Re: [flexcoders] VideoDisplay play/pause button

2008-09-05 Thread Igor Costa
Try to put your control on control. Like that mx:VideoDisplayObject id=vid/ button click=vid.play();/ button click=vid.pause();/ Regards Igor Costa www.igorcosta.org On Fri, Sep 5, 2008 at 4:14 PM, sleekdigital [EMAIL PROTECTED] wrote: To make a simple play / pause button I bind the

[flexcoders] VideoDisplay autobandwidth and FMS3

2008-08-18 Thread celumbra
I am looking for examples of using the autobandwidth property of Flex's VideoDisplay and FMS3's new support for automatically calculating bandwidth. Anyone done this?

[flexcoders] videoDisplay and squished video...

2008-06-25 Thread grimmwerks
Hey - I'm pulling in a number of brightcove videos into flex using the videoDisplay class. For some reason, flipping through 68 different videos, some seem to squish and I can't figure out why. I might have to flip to the netstream classes but has anyone seen this before?

Re: [flexcoders] videoDisplay and squished video...

2008-06-25 Thread grimmwerks
What's curious is that both squished and unsquished videos are returning that they're 512 wide in videowidth On Jun 25, 2008, at 3:43 AM, grimmwerks wrote: Hey - I'm pulling in a number of brightcove videos into flex using the videoDisplay class. For some reason, flipping through 68

[flexcoders] VideoDisplay component DCP

2008-06-21 Thread Dan Pride
Thanks. Just a followup. Will I be able to issue commands to the camera from the VideoDisplay component? Thanks

[flexcoders] VideoDisplay: why does play restart buffering after load?

2008-04-21 Thread Dennis Falling
I'm trying to avoid using VideoDisplay's default buffering and loading/playing videos manually. For some reason, calling load and then play sometimes makes the player start buffering again from the very beginning. I assume this is caused by one of the booleans sourceChanged or closeCalled not

Re: [flexcoders] VideoDisplay lies about bytesLoaded

2008-04-20 Thread Nayan Savla
Hi Dennis, I would just listen for progress event of the videodisplay component and get my bytesLoaded/bytesTotal from that. It has always worked correctly for me. Nayan On Apr 19, 2008, at 8:56 PM, Dennis Falling wrote: I'm using a changewatcher to observe the bytesLoaded attribute of a

[flexcoders] VideoDisplay lies about bytesLoaded

2008-04-19 Thread Dennis Falling
I'm using a changewatcher to observe the bytesLoaded attribute of a videoDisplay and update the UI accordingly. This works well most of the time, but once during each of the longer videos, bytesLoaded will jump, then continue loading. bytesLoaded / bytesTotal: 3186688/4971903 4971903/4971903 --

[flexcoders] VideoDisplay intelligent buffering?

2008-04-16 Thread Dennis Falling
Are there any tricks to make the VideoDisplay's buffering work a little better? The default behavior of simply waiting a number of seconds isn't ideal because if it's a short video, this may be too long, and if it's a long video, this may be too short. If anyone has come up with a good way of

[flexcoders] VideoDisplay throws Error: Cannot call reconnect on an http connection.

2008-02-10 Thread João
Hello, I have a form where the user can select videos to play on a VideoDisplay. Everything works just fine, except if the user changes videos too fast. When that happens, sometimes it's thrown the error Error: Cannot call reconnect on an http connection. I don't know what's causing this,

Re: [flexcoders] VideoDisplay throws Error: Cannot call reconnect on an http connection.

2008-02-10 Thread shrikant.patil
hi, the error is because of, while u streaming a video from the server and u make fast oneafter another request to the server for different video.. the way u can achive is that u may need to clear the video before making new request. refer below link u wil get complete idea and hope

[flexcoders] VideoDisplay over RTMP - Not possible?

2008-02-01 Thread polestar11
Hi I've run into a seemingly common problem of setting videoDisplay source to an rtmp stream. I get the following exception as soon as the video-display's play is triggered: ArgumentError: Error #2126: NetConnection object must be connected. at flash.net::NetStream/construct() at

Re: [flexcoders] VideoDisplay over RTMP - Not possible?

2008-02-01 Thread YOGESH JADHAV
U don't need to start from scrath , i hv once seen such component developed on net. Google may help. On Feb 1, 2008 3:59 PM, YOGESH JADHAV [EMAIL PROTECTED] wrote: exactly, VideoDisplay Sucks, use Video Object and add it to panel ( if u want same looks of videodisplay ) On Feb 1, 2008 3:13

Re: [flexcoders] VideoDisplay over RTMP - Not possible?

2008-02-01 Thread YOGESH JADHAV
exactly, VideoDisplay Sucks, use Video Object and add it to panel ( if u want same looks of videodisplay ) On Feb 1, 2008 3:13 PM, polestar11 [EMAIL PROTECTED] wrote: Hi I've run into a seemingly common problem of setting videoDisplay source to an rtmp stream. I get the following exception

[flexcoders] VideoDisplay inconsistent behavior, it gets Stuck

2007-11-28 Thread Nadeem Manzoor
Hello Guys I am working on a Flex Media application. I am sending Flv path through Javascript. Everythings is working fine. But, suppose, if i send a fake flv url it throgh an Exception connectionerror and after then it gets stuck e.g. after connectionerror if i am trying to pass a proper flv

[flexcoders] VideoDisplay inconsistent behavior, it gets Stuck

2007-11-28 Thread Nadeem Manzoor
Hello Guys I am working on a Flex Media application. I am sending Flv path through Javascript. Everythings is working fine. But, suppose, if i send a fake flv url it throgh an Exception connectionerror and after then it gets stuck e.g. after connectionerror if i am trying to pass a proper flv

Re: [flexcoders] VideoDisplay inconsistent behavior, it gets Stuck

2007-11-28 Thread Michael Wills
First I was going to say you have to put that in a try..catch block, except accessing an invalid URL won't throw the exception in a way the try..catch can work with. Can you add an event listener to your FLV loader similar to this post?

Re: [flexcoders] VideoDisplay inconsistent behavior, it gets Stuck

2007-11-28 Thread Nadeem Manzoor
Thanks for reply. It is really useful to use try catch but in my case it doesn't work, so here is my question Is it possible to check a URL is valid before even loading the file? for example i get an flv path from Web service, before setting this path as a source of Video Display component, i

[flexcoders] VideoDisplay smoothing

2007-06-05 Thread Jon Bradley
I saw a post on the cookbook beta about smoothing the VideoDisplay but unfortunately it doesn't work out of the box. There's a call to videoPlayer.smoothing which obviously doesn't exist. After removing that, event extending VideoDisplay and using the _smoothing property, it doesn't smooth

[flexcoders] VideoDisplay volume problem

2007-05-28 Thread Paul DeCoursey
I am having an issue with a VideoDisplay. It seems to ignore any volume setting I set. I have tried to set it to 0 at many different places and times in my code and every single time I can still hear the audio when the video starts. Has anyone else had this issue? Does anyone have a

[flexcoders] VideoDisplay over RTMP w/ autoRewind

2007-04-10 Thread kelpmike
Hi everyone, I'm having the following problem and thought I would throw this out there to see if someone has also had it and maybe found a solution. Even a confirmation that someone else has had it would let me know I haven't done anything too crazy. Anyway, I'm trying to play an FLV video over

[flexcoders] VideoDisplay bug?! How to extend to change a private variable?

2007-03-28 Thread beecee1977
Hi, I would normally spend more time trying to work this out first, but I'm under a bit of pressure... There appears to be a bug in the VideoDisplay code. vid.close() = within the videoDisplay a private variable called closeCalled is set to true. vid.play() = the closeCalled variable is set

Re: [flexcoders] VideoDisplay volume problem

2007-03-13 Thread Julian Sander
Hi David, the problem is based on the conditional in the VideoDisplay function set volume... I had to track this down and found a temporary workaround.. package com.iahh.teaser.ui { import mx.controls.VideoDisplay; public class IAHHVideoDisplay extends VideoDisplay

[flexcoders] VideoDisplay volume problem

2007-03-09 Thread David Gassner
Using the VideoDisplay component, it seems that setting the volume property doesn't have any effect. For instance: mx:VideoDisplay id=video volume=0/ results in playing the video, but the sound is still there. I've also tried setting the volume to 0 just before playing, and even calling

[flexcoders] VideoDisplay help

2007-03-02 Thread john
do you know how can access the onMetaData, from VideoDisplay component. i use the VideoDisplay to play a stream flv file from a FVS, and i have problem with this component from Flex on buffering percent left from 100%, and with metadata :( i search for information on doc's flex, googleing on

Re: [flexcoders] VideoDisplay help

2007-03-02 Thread Muzak
02, 2007 4:21 PM Subject: [flexcoders] VideoDisplay help do you know how can access the onMetaData, from VideoDisplay component. i use the VideoDisplay to play a stream flv file from a FVS, and i have problem with this component from Flex on buffering percent left from 100%, and with metadata

[flexcoders] VideoDisplay won't load first frame

2007-02-12 Thread klumikaze
I have a VideoDisplay component, and I've declared it's 'source' properly, I also do a myVidDisplay.load() when the component hits creationComplete. I have autoPlay disabled, you need to hit a play button to initiate the myVidDisplay.play() call... Unfortunately, the first frame of the video

Re: [flexcoders] VideoDisplay won't load first frame

2007-02-12 Thread Muzak
Try calling myVidDisplay.load() in the 'ready' event handler instead of the 'creationComplete' event handler. regards, Muzak - Original Message - From: klumikaze [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 12, 2007 4:17 PM Subject: [flexcoders] VideoDisplay

[flexcoders] VideoDisplay Help

2006-12-01 Thread John Duff
Hoping someone out there will be able to help me with this. The VideoDisplay component uses a VideoPlayer object, which doesn't seem to exist in Actionscript 3. How can it be used in the VideoDisplay component, and how can I use it? I am writing an app and want to have the ability to play a flv

Re: [flexcoders] VideoDisplay playheadTime problem

2006-08-16 Thread 海云飞
I had the same problem.I traced the videoDisplay.bytesLoaded and videoDisplay.bytesTotal.I noticed that if all the bytes had been loaded then u can forward the videofreely, other wise, the videoDisplay only forward 5or6 frames. 2006/8/9, bal_ketan [EMAIL PROTECTED]:

[flexcoders] videodisplay no bitrate match follow up

2006-08-15 Thread Impudent1
I lost the original post but I thought this might help whoever it was, or someone else. I was going nuts trying to figure out why I couldn't get even the example videodisplay code to show my flvs when they were on the server. I kept getting this no_bitrate_match 1001 error with the compile.

[flexcoders] VideoDisplay and Flash 8 skin components

2006-08-11 Thread Rick Schmitty
Is it possible to use the skins from the Flash 8 designer skin components with a flex VideoDisplay, or do the different versions of actionscript prevent this? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

[flexcoders] VideoDisplay playheadTime problem

2006-08-09 Thread bal_ketan
I have a VideoDisplay component on my page. I need a forward functionality for the video. When i click on forward button it should go to the last frame of the video and stop there. Heres my code: myVideo.playheadTime = myVideo.totalTime; myVideo.validateNow(); myVideo.pause(); // not using

[flexcoders] VideoDisplay control

2006-07-31 Thread user_abcxyz
Can we write to the playheadTime property of the VideoDisplay control in Flex to jump forward or backward during play mode of the .flv video? I can assign a new value to this property, but then the playing of the .flv doesn't seem to jump correctly. Or is there a right way to jump section when

[flexcoders] VideoDisplay extendable ?

2006-07-27 Thread Dan Rossi
Hi im tryingt to extend the VideoDisplay flex component, however im trying to work out how to inherit its NetConnection properties, obviouslly its using it, but i cant work out where ? let me know. Daniel -- Flexcoders Mailing List FAQ:

[flexcoders] VideoDisplay Problems

2006-07-18 Thread alpharythms
I've discovered that if you load an invalid source into the VideoDisplay it will no longer work even if you change the source to a valid one later and will get the Error:1000 if you try to issue a Play() command. Might be a clue on how to work around your video problems. And of course if anyone

Re: [flexcoders] VideoDisplay Problems

2006-07-18 Thread JesterXL
. Then, create a new one. - Original Message - From: alpharythms [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Tuesday, July 18, 2006 6:18 PM Subject: [flexcoders] VideoDisplay Problems I've discovered that if you load an invalid source into the VideoDisplay it will no longer

[flexcoders] VideoDisplay and getting metadata

2006-06-04 Thread John Grden
mx:VideoDisplay metadataReceived=setMetaData(Object).../this works and I'm able to receive the event, but there's no docs on the tye of event object sent back and what I can work with etc. Does anyone have sample code I can look at? setMetaData gets called but all I see for the trace is [class