我已经尝试过AVPlayer播放在线http流媒体音乐文件,它运行正常。
获取当前播放音轨名称,艺术家等的方法是什么?
有没有办法在播放音乐时调整AVPlayer的音量(使用UISlider
)?
答案 0 :(得分:1)
您可以通过以下方式调整音量:
player.volume = slider.value;
答案 1 :(得分: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];