我正在尝试在iOS设备上播放.pls音频流,但它似乎无法正常工作,这就是我目前正在做的事情;
@synthesize player;
- (void)viewDidLoad
{
[super viewDidLoad];
self.player = [AVPlayer playerWithURL:[NSURL URLWithString:@"mypls.pls"]];
}
- (IBAction)pushStart:(id)sender {
[player play];
}
答案 0 :(得分:0)
当您使用.pls流时,实际上只需打开一个带有IP的流的播放列表。 您必须在代码中使用此IP而不是.pls文件,因此您不必链接到.pls文件,而是链接到URL字段中的流。