作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在 iPhone 应用程序中访问 iPod 库并显示专辑的标题、歌词和插图。我还想显示歌曲的歌词。我已在 iTunes 中添加歌词并将其与设备同步。但我的代码未显示歌词..
Example from here获取歌词的代码是:-
- (void)handleNowPlayingItemChanged:(id)notification {
// Ask the music player for the current song.
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:MPMediaItemPropertyAlbumArtist];
self.albumLabel.text = [[currentItem valueForProperty:MPMediaItemPropertyLyrics]retain];
}
请帮忙。谢谢
最佳答案
NSURL* songURL = [mediaItem valueForProperty:MPMediaItemPropertyAssetURL]
AVAsset* songAsset = [AVURLAsset URLAssetWithURL:songURL options:nil];
NSString* lyrics = [songAsset lyrics];
关于iphone - 如何从 iPod 库歌曲中获取歌曲的歌词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6923449/
我正在使用诱变剂尝试在我的媒体上查找歌词。当我运行以下命令时 import mutagen.mp3 mp3 = MP3(mp3file) print mp3.pprint() 我可以看到框架 USLT
如何在 Interface Builder for Cocoa 中创建滚动 TextView ,如 iTunes 的歌词 View ? 最佳答案 使用 NSTextView,只需将其拖到 Interf
我是一名优秀的程序员,十分优秀!