是否可以使用 VideoDisplay 或 VideoPlayer 组件播放 MP3 文件?
谢谢你。
实际上,是的,他们可以播放 MP3 文件。我只是通过简单地将 MP3 的路径传递给 VideoPlayer 组件实例来使其工作。
虽然我不建议使用视频组件来单独播放音频文件,但我同意有时在视频显示组件中播放声音文件是合适的。就我而言,我有一个混合的音频和视频媒体项目列表,并且想要一个统一的预览区域和播放/擦洗控件。
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();