From: Alexander Schmidt Date: Sat, 7 Feb 2015 23:01:27 +0000 (+0100) Subject: Beautified output even more. X-Git-Url: http://git.treefish.org/~alex/usetaglib.git/commitdiff_plain/96a5c804590346014e8fe97b785823f1b88d7078 Beautified output even more. --- diff --git a/usetaglib.cpp b/usetaglib.cpp index 25c0d8d..43f60bd 100644 --- a/usetaglib.cpp +++ b/usetaglib.cpp @@ -78,7 +78,7 @@ int action_printTags (const TagLib::FileRef f, TagLib::PropertyMap &propmap) 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; @@ -96,7 +96,7 @@ int action_printAudio (const TagLib::FileRef f) 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;