]> git.treefish.org Git - usetaglib.git/commitdiff
Beautified output.
authorAlexander Schmidt <alex@treefish.org>
Sat, 7 Feb 2015 22:49:31 +0000 (23:49 +0100)
committerAlexander Schmidt <alex@treefish.org>
Sat, 7 Feb 2015 22:49:31 +0000 (23:49 +0100)
usetaglib.cpp

index 8c04a55b71a765ff3c984b2aef9854e8b1a1ba89..25c0d8df913e6fde2e4cf404fa11292ef4eb06fb 100644 (file)
@@ -78,7 +78,7 @@ int action_printTags (const TagLib::FileRef f, TagLib::PropertyMap &propmap)
        longest = i->first.size();
       }
     }
-    cout << "-- TAG (properties) --" << 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 --" << endl;
+    cout << "----[ AUDIO PROPERTIES ]----" << endl;
     cout << "BITRATE=" << properties->bitrate() << endl;
     cout << "SAMPLERATE=" << properties->sampleRate() << endl;
     cout << "CHANNELS=" << properties->channels() << endl;
@@ -121,7 +121,7 @@ void printHelp ()
     "  If multiple actions are specified they are executed in given order.\n"
     "\n"
     "  -l, --list                    list all tags (implicit if no action given)\n"
-    "  -a, --audio                   show audio information\n"
+    "  -a, --audio                   show audio properties\n"
     "  -e, --erase=TAGNAME           erase tag TAGNAME\n"
     "  -r, --replace=TAGNAME=TAGVAL  replace tag TAGNAME with value TAGVAL\n"
     "  -i, --insert=TAGNAME=TAGVAL   insert tag TAGNAME with value TAGVAL\n";
@@ -227,7 +227,11 @@ int main(int argc, char *argv[])
     requestedActions.push_back( make_pair(LIST, "") );
         
   for(int i = optind; i < argc; i++) {
-    cout << "******************** \"" << argv[i] << "\" ********************" << endl;
+    cout << " _________________________________________ _ _ _" << endl;
+    cout << "/" << endl;
+    cout << "  " << argv[i] << endl;
+    cout << "\\_________________________________________ _ _ _" << endl;
+    
     TagLib::FileRef f(argv[i]);
 
     if(f.isNull())