AVPlayer可以在iPad上播放MP3文件

时间:2011-06-07 12:01:57

标签: iphone

AVPlayer可以放置MP3文件吗?

它没有在Apple文档中列出MP3。

3 个答案:

答案 0 :(得分:3)

你尝试使用

吗?
   [[AVAudioPlayer alloc]initWithContentsOfURL:fileUrl error:nil];

播放文件

答案 1 :(得分:2)

是的,它可以播放MP3。

尝试阅读apple documentation here,特别是“iOS硬件和软件音频编解码器”

部分

enter image description here

答案 2 :(得分:1)

这是一个完整的样本。

myClass.h:

- @interface myClass : NSObject \<AVAudioPlayerDelegate\> ...

myClass.m:

   localPlayer = [[AVAudioPlayer alloc]
   initWithContentsOfURL:newAudioURL error:nil]; [localPlayer
   setDelegate:self];

   - (void)audioPlayerDidFinishPlaying:(AVAudioPlayer *)playedPlayer successfully:(BOOL)flag {
        NSLog(@"releasing");
        [playedPlayer release];
        NSLog(@"released"); }
相关问题