Does running with the debug version of the flash player show
exceptions? Note that you'll need to download a special version of the
player...
On Jun 11, 2010, at 11:35 AM, "Michaela Merz" <[email protected]>
wrote:
Well, yes and no. The audio worked fine, I had no need for the
additional
params.
Now because of the audio being broken (under Linux), I wanted to play
around with the parameters
dev.setEncodeQuality(6);
dev.setFramesPerPacket(1);
dev.setRate(22);
and discovered, that I can't compile an OpenLazlo application with
those
parameters active.
Michaela
And it worked before the Flash 10 update?
Regards,
Max Carlson
OpenLaszlo.org
On 6/11/10 10:37 AM, Michaela Merz wrote:
Hey Max:
Doesn't work with either, 4.7.1 and 4.7.2
mm.
What version of OL are you using? I assume you're compiling for
swf10
-
we recently switched the version of the Flex compiler, which could
potentially affect this. Let us know!
Regards,
Max Carlson
OpenLaszlo.org
On 6/11/10 5:27 AM, Michaela Merz wrote:
While playing around with OL microphone settings, I was
wondering why
<method name="_makeDevice"><![CDATA[
var dev = super._makeDevice();
dev.codec = 'Speex';
dev.setEncodeQuality(6);
dev.setFramesPerPacket(1);
dev.setRate(22);
dev.soundTransform = this._sound;
dev.setUseEchoSuppression(true);
]]>
/method>
will break compilation. No errors, but a broken swf? Any of the
following
will make problems:
dev.setEncodeQuality(6);
dev.setFramesPerPacket(1);
dev.setRate(22);
Removing them all together returns to normal compile.
Any ideas?
Michaela