1

我试过用 AVPlayer 播放在线 http 流音乐文件,效果很好。

获取当前播放的音轨名称、艺术家等的方法是什么?
有没有办法在播放音乐时调整 AVPlayer 的音量(使用UISlider)?

4

2 回答 2

1

您可以通过以下方式调节音量:

player.volume = slider.value;
于 2012-04-17T06:27:56.813 回答
0
MPMediaItem *currentItem = self.musicPlayer.nowPlayingItem;

//Display the artist, album, and song name for the now-playing media item.
//These are all UILabels.
self.songLabel.text   = [currentItem valueForProperty:MPMediaItemPropertyTitle];
self.artistLabel.text = [currentItem valueForProperty:MPMediaItemPropertyArtist];
self.albumLabel.text  = [currentItem valueForProperty:MPMediaItemPropertyAlbumTitle];
于 2012-04-17T06:33:39.087 回答