本文整理汇总了C++中music_info::CMusicInfoTag::GetComment方法的典型用法代码示例。如果您正苦于以下问题:C++ CMusicInfoTag::GetComment方法的具体用法?C++ CMusicInfoTag::GetComment怎么用?C++ CMusicInfoTag::GetComment使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类music_info::CMusicInfoTag
的用法示例。
在下文中一共展示了CMusicInfoTag::GetComment方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: AddSong
void CScrobbler::AddSong(const MUSIC_INFO::CMusicInfoTag &tag, bool lastfmradio)
{
ClearSubmissionState();
if (!CanScrobble() || !tag.Loaded())
return;
if (tag.GetArtist().empty() || tag.GetTitle().IsEmpty())
return;
// our tags are stored as UTF-8, so no conversion needed
m_CurrentTrack.length = tag.GetDuration();
m_CurrentTrack.strArtist = StringUtils::Join(tag.GetArtist(), g_advancedSettings.m_musicItemSeparator);
m_CurrentTrack.strAlbum = tag.GetAlbum();
m_CurrentTrack.strTitle = tag.GetTitle();
m_CurrentTrack.strMusicBrainzID = tag.GetMusicBrainzTrackID();
if (lastfmradio) // TODO Set source more appropriately
m_CurrentTrack.strSource = "L" + tag.GetComment();
else
m_CurrentTrack.strSource = "P";
m_CurrentTrack.strRating = "";
m_CurrentTrack.strLength.Format("%d", m_CurrentTrack.length);
m_CurrentTrack.strStartTime.Format("%d", time(NULL));
m_CurrentTrack.strTrackNum.Format("%d",tag.GetTrackNumber());
CURL::Encode(m_CurrentTrack.strArtist);
CURL::Encode(m_CurrentTrack.strTitle);
CURL::Encode(m_CurrentTrack.strAlbum);
CURL::Encode(m_CurrentTrack.strMusicBrainzID);
m_bNotified = false;
m_bSubmitted = !((lastfmradio && g_guiSettings.GetBool("scrobbler.lastfmsubmitradio")) ||
(!lastfmradio && g_guiSettings.GetBool("scrobbler.lastfmsubmit") && (m_CurrentTrack.length > SCROBBLER_MIN_DURATION || !m_CurrentTrack.strMusicBrainzID.IsEmpty())));
}