longest = i->first.size();
}
}
- cout << "----[ TAGS ]----" << endl;
+ cout << " \\_____/ TAGS \\_____ _ _ _" << endl;
for(TagLib::PropertyMap::ConstIterator i = propmap.begin(); i != propmap.end(); ++i) {
for(TagLib::StringList::ConstIterator j = i->second.begin(); j != i->second.end(); ++j) {
cout << i->first << "=" << *j << endl;
TagLib::AudioProperties *properties = f.audioProperties();
int seconds = properties->length() % 60;
int minutes = (properties->length() - seconds) / 60;
- cout << "----[ AUDIO PROPERTIES ]----" << endl;
+ cout << " \\_____/ AUDIO PROPERTIES \\_____ _ _ _" << endl;
cout << "BITRATE=" << properties->bitrate() << endl;
cout << "SAMPLERATE=" << properties->sampleRate() << endl;
cout << "CHANNELS=" << properties->channels() << endl;