我正在尝试在 iOS 上使用 MPMoviePlayerController 通过 HTTP 播放音频流。
我已经导入MediaPlayer.framework
并使用了MPMoviePlayerController 文档中的代码,但没有声音。
MPMoviePlayerController *player =
[[MPMoviePlayerController alloc] initWithContentURL:[NSURL URLWithString:@"http://shoutmedia.abc.net.au:10326"]];
[player prepareToPlay];
[player.view setFrame: self.view.bounds]; // player's frame must match parent's
[self.view addSubview: player.view];
[player play];
我也尝试过添加player.movieSourceType = MPMovieSourceTypeStreaming;
,但也没有用。
有什么想法吗?