Macromedia Flash Server - Audio issues

This is Interesting: Free IT Magazines  
Home > Archive > Macromedia Flash Server > August 2005 > Audio issues





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author Audio issues
Simon Lord

2005-08-19, 2:46 am

Ok, so hopefully this is an easy one but why does my audio sound like
it's *really* slow? It's as if I were listening to an old album
spinning at the wrong speed.

=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------

To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

Edward Chan

2005-08-19, 2:46 am

Can you give us a little more detail than that?
=20

> -----Original Message-----
> From: flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org=20
> [mailto:flashcomm-bounces-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org] On Behalf Of=20
> Simon Lord
> Sent: Thursday, August 18, 2005 8:55 PM
> To: flashcomm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org
> Subject: [FlashComm] Audio issues
>=20
> Ok, so hopefully this is an easy one but why does my audio=20
> sound like it's *really* slow? It's as if I were listening=20
> to an old album spinning at the wrong speed.
>=20
> =3D-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =3D-----------------------------------------------------------
>=20
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>=20


=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------

To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

Sean Moran

2005-08-19, 2:46 am


How was the audio encoded? What bitrate, sampling, etc? Flash only =20
supports increments of "11" kHz...



"When you have your original music file (WAV, AIFF, and so forth), =20
make sure=97in whichever sound-editing program you're using=97that the =20=

sample rate is in an increment of 11 kHz (11, 22, 44, and so forth). =20
If you use a sample rate that is not in an increment of 11, Flash MX =20
2004 will resample them when played. This might cause the MP3 to play/=20=

behave unexpectedly. Normally, sound files have an 11 kHz incremental =20=

sample rate, so this isn't an issue to worry much about. However, if =20
you are integrating audio into your Flash MX 2004 project, and the =20
audio starts sounding like it's in a different pitch, or you notice =20
other strange anomalies, check the audio sample rate to make sure =20
that it's in an increment of 11 kHz."

from http://www.peachpit.com/articles/ar...&seqNum=3D3&rl=
=3D1


HTH,
Sean

On Aug 18, 2005, at 9:55 PM, Simon Lord wrote:

>
> Ok, so hopefully this is an easy one but why does my audio sound =20
> like it's *really* slow? It's as if I were listening to an old =20
> album spinning at the wrong speed.
>
> =3D-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =3D-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>



=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------

To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

JesterXL

2005-08-19, 2:46 am

Sounds like a VBR encoded mp3; Flash no like.

----- Original Message -----
From: "Simon Lord" <slord-1+jUDDTtyItWk0Htik3J/w@public.gmane.org>
To: <flashcomm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org>
Sent: Thursday, August 18, 2005 11:55 PM
Subject: [FlashComm] Audio issues


Ok, so hopefully this is an easy one but why does my audio sound like
it's *really* slow? It's as if I were listening to an old album
spinning at the wrong speed.

=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------

To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------

To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

Simon Lord

2005-08-19, 5:45 pm

Errrm, this is right from my webcam straight. Nothing fancy, but
obviously something's wrong. It'd be a cool effect if I wasn't on
such a tight schedule and had time to study it.


startPublish = function (nc) {
this.video.attachVideo(Camera.get());
this.publish_ns = new NetStream(nc);
this.publish_ns.publish(_root.gusername);
avCam = Camera.get();
avCam.setMotionLevel(30, 500);

avCam.setMode(440, 190, 6, 0);
avCam.setKeyFrameInterval(36);
avCam.setQuality(32768, 85);

this.publish_ns.clear();
this.publish_ns.attachVideo(avCam);
this.publish_ns.smoothing = true;
this.publish_ns.attachAudio(Microphone.get());

this.video._visible = true;
};


function startSubscribe(nc) {
this.play_ns = new NetStream(nc);
this.video.clear();
this.video.attachVideo(play_ns);
this.play_ns.receiveAudio(true);

this.play_ns.play("demo");
this.video._visible = true;

this.play_ns.onStatus = function(info) {
switch (info.code) {
case "NetStream.Play.UnpublishNotify" :
stopSubscribe();
break;
}
};
}





On Aug 19, 2005, at 1:02 AM, JesterXL wrote:

> Sounds like a VBR encoded mp3; Flash no like.
>
> ----- Original Message -----
> From: "Simon Lord" <slord-1+jUDDTtyItWk0Htik3J/w@public.gmane.org>
> To: <flashcomm-1Ss2GqJETD3yZ38Mhd3e/9ZfFG6BLHNm@public.gmane.org>
> Sent: Thursday, August 18, 2005 11:55 PM
> Subject: [FlashComm] Audio issues
>
>
> Ok, so hopefully this is an easy one but why does my audio sound like
> it's *really* slow? It's as if I were listening to an old album
> spinning at the wrong speed.
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>
> =-----------------------------------------------------------
> Supported by Fig Leaf Software - http://www.figleaf.com
> =-----------------------------------------------------------
>
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcomm
>



=-----------------------------------------------------------
Supported by Fig Leaf Software - http://www.figleaf.com
=-----------------------------------------------------------

To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcomm

Sponsored Links






Free braindumps | Software forum | Database administration forum

Copyright 2003 - 2008 webservertalk.com