Flash/Flex:播放嵌入的 AAC 音频?

发布于 2024-09-03 11:16:53 字数 459 浏览 9 评论 0原文

是否可以以某种方式在 Flash/Flex 中播放嵌入 AAC 文件?我知道您可以播放嵌入的 MP3 文件,但我听说您不能使用 AAC 来做到这一点。有人知道有什么偷偷摸摸的方法来解决这个问题吗?

作为说明,这里是代码。

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

public function EmbeddedAudioTest()
{
  myMp4Sound.play();
}

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();
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雨落星ぅ辰 2024-09-10 11:16:53

不幸的是你不能。如果您将音频文件转换为仅包含音轨的视频,则可以播放它。

这看起来确实是播放器中的一个愚蠢的疏忽,因为它支持播放嵌入式声音并支持嵌入视频中的 AAC。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文