quangbd1904 / wami-recorder

Automatically exported from code.google.com/p/wami-recorder
0 stars 0 forks source link

swf doesn't show anything after permissions confirmation in Firefox 11.0/Ubuntu 11.10 64bit #14

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Load page http://code.google.com/p/wami-recorder/
2. Confirm the permission for Flash to use microphone and webcam
3. Wait for a very long time - only a grey-background area appears, no 
recording or play feature.

What is the expected output? What do you see instead?

Recording and play buttons are expected.

What version of the WAMI recorder are you using? What version of Flash are
you using?  In what browser?  On what operating system?

WAMI is the one from the homepage.
Firefox 11.0
Flash plugin 11.2.202.228 64bit from adobe-flashplugin package in Ubuntu 11.10

Original issue reported on code.google.com by ywarn...@gmail.com on 9 Apr 2012 at 5:31

GoogleCodeExporter commented 8 years ago
I have the same issue in 19.0.1084.30 beta on Ubuntu 11.10.

When I try to navigate away, I can see the recording and play buttons for some 
milliseconds before exiting page...

Original comment by mikelan...@gmail.com on 23 Apr 2012 at 9:24

GoogleCodeExporter commented 8 years ago
I have the same issue.

Original comment by qen...@gmail.com on 12 Oct 2012 at 1:52

GoogleCodeExporter commented 8 years ago
I have the same issue. Did you find a way to fix it? 

Thanks,
Samuel 

Original comment by samuel.i...@gmail.com on 23 Apr 2014 at 3:01

GoogleCodeExporter commented 8 years ago
In a way, yes. The issue is not really WAMI, it's the HTML around it.
If you edit the source of the homepage with Firebug, you'll find there are two 
elements with a width of 214px: 
* First, the <object id=... width=214 ...>
* Second, an unnamed <div style="position: absolute; width: 214px; height: 
137px;">

Set the first to width=14 and the second to width:314px, and you can see the 
recording *and* the play buttons, and they both work.

Another (simpler) way to do this is to add the <param name="wmode" 
value="transparent"> tag *inside* the flash <object> marker.

This is a known issue with Flash, but somehow I didn't expect the demo page for 
WAMI not to have the transparent element...

Original comment by ywarn...@gmail.com on 23 Apr 2014 at 11:09

GoogleCodeExporter commented 8 years ago
A better way to say the above, is that you need to add the <param name="wmode" 
value="transparent"> tag *between* <object ... > and </object>

Original comment by ywarn...@gmail.com on 23 Apr 2014 at 11:10