0

是否可以使用 VideoDisplay 或 VideoPlayer 组件播放 MP3 文件?

谢谢你。

4

2 回答 2

1

实际上,是的,他们可以播放 MP3 文件。我只是通过简单地将 MP3 的路径传递给 VideoPlayer 组件实例来使其工作。

虽然我不建议使用视频组件来单独播放音频文件,但我同意有时在视频显示组件中播放声音文件是合适的。就我而言,我有一个混合的音频和视频媒体项目列表,并且想要一个统一的预览区域和播放/擦洗控件。

于 2011-09-15T08:42:29.957 回答
0

Why would you use a video component to play a sound file? Either way, you should probably google before posting here. This is how you do it:

var snd:Sound = new Sound(new URLRequest("smallSound.mp3"));
snd.play();
于 2011-04-12T12:40:40.820 回答