Is it possible to play an embedded AAC file in Flash/Flex somehow? I know you can playback embedded MP3 files, but I hear that you can't do that with AAC. Anyone know any sneaky ways to get around this?

By way of illustration, here's come code.

[Embed(source='../../audio/music02.m4a', mimeType="audio/aac")]
private static const __ExampleMp4File:Class;
public var myMp4Sound:Sound = new __ExampleMp4File();

public function EmbeddedAudioTest()
{
  myMp4Sound.play();
}
link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Unfortunately you can't. If you convert the audio file to video with just an audio track, then you can play it.

This does seem like a silly oversight in the player since it has support for playing embedded sound and support for AAC embedded in video.

link|improve this answer
Oh, so you can play [Embed]-ed video files?! That sounds like a compromise I'm very willing to make. Can you post code to illustrate? – aaaidan Jun 2 '10 at 22:36
Hey Sam, just a wee nudge ... you can/can't play embedded video files? – aaaidan Aug 11 '10 at 2:53
@aaaidan, yes, you can [Embed] a video and play it. – Samuel Neff Aug 11 '10 at 10:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.