Ragazzi ho lo stesso problema e non riesco a capire perchè mai l'mp3 se ascoltato con winamp si sente a velocità normale, invece in flash la velocità viene raddoppiata.

Ho verificato i kbps che sono fissi a 32, ho provato anche ad editare l'mp3 col wave editor di Nero e durante il salvataggio ho impostato il bitrate costante, ma l'mp3 viene sempre accelerato!!!!

Questo è lo script
codice:
onClipEvent (load) {
	_root.mySound = new Sound();
	_root.mySound.loadSound("soundloop.mp3");
	_root.started = 0;
}

onClipEvent (enterFrame) {
	mySoundBytesTotal =_root.mySound.getBytesTotal();
	mySoundBytesLoaded=_root.mySound.getBytesLoaded();
	if (_root.started == 0 && mySoundBytesLoaded > 0) {
		mySoundLoading=Math.round((mySoundBytesLoaded/mySoundBytesTotal)*100);
		if (mySoundLoading==100) {
			_root.mySound.start();
			_root.started = 1;
			_root.playing = 1;
		}
	}
}

on(release) {
	if (_root.playing!=1) {
		_root.mySound.start();
		_root.playing=1;
		_root.muteBT.on_mc._visible = 1;
	} else if (_root.playing==1){
		_root.mySound.stop();
		_root.playing=0;
		_root.muteBT.on_mc._visible = 0;
	}
}
le caratteristiche dell'mp3 sono....

Size: 268272 bytes
Header found at: 0 bytes
Length: 67 seconds
MPEG-1 layer 3
32kbit, approx. 1863 frames
32000Hz Mono
CRCs: Yes, Copyrighted: No
Original: Yes, Emphasis: None

Qualcuno sa darmi una spiegazione?????