]> granicus.if.org Git - taglib/commitdiff
Didn't mean to check this in.
authorScott Wheeler <wheeler@kde.org>
Sun, 3 Apr 2005 16:36:17 +0000 (16:36 +0000)
committerScott Wheeler <wheeler@kde.org>
Sun, 3 Apr 2005 16:36:17 +0000 (16:36 +0000)
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/kdesupport/taglib@402892 283d02a7-25f6-0310-bc7c-ecb5cbfe19da

examples/framelist.cpp

index 4a0079d9037a58daa9e941cdf1004179e2528225..01dfea0630168c1b052e010a139fdd16f518e113 100644 (file)
@@ -27,7 +27,6 @@
 #include <unistd.h>
 
 #include <tbytevector.h>
-#include <fileref.h>
 
 #include <mpegfile.h>
 
@@ -37,9 +36,6 @@
 
 #include <id3v1tag.h>
 
-#include <vorbisfile.h>
-#include <xiphcomment.h>
-
 using namespace std;
 using namespace TagLib;
 
@@ -47,66 +43,49 @@ int main(int argc, char *argv[])
 {
   // process the command line args
 
+
   for(int i = 1; i < argc; i++) {
 
     cout << "******************** \"" << argv[i] << "\"********************" << endl;
 
-    FileRef file(argv[i]);
-
-    if(dynamic_cast<MPEG::File *>(file.file())) {
-      MPEG::File *f = static_cast<MPEG::File *>(file.file());
-
-      ID3v2::Tag *id3v2tag = f->ID3v2Tag();
+    MPEG::File f(argv[i]);
 
-      if(id3v2tag) {
+    ID3v2::Tag *id3v2tag = f.ID3v2Tag();
 
-        cout << "ID3v2."
-             << id3v2tag->header()->majorVersion()
-             << "."
-             << id3v2tag->header()->revisionNumber()
-             << ", "
-             << id3v2tag->header()->tagSize()
-             << " bytes in tag"
-             << endl;
+    if(id3v2tag) {
 
-        ID3v2::FrameList::ConstIterator it = id3v2tag->frameList().begin();
-        for(; it != id3v2tag->frameList().end(); it++)
-          cout << (*it)->frameID() << " - \"" << (*it)->toString() << "\"" << endl;
-      }
-      else
-        cout << "file does not have a valid id3v2 tag" << endl;
+      cout << "ID3v2."
+           << id3v2tag->header()->majorVersion()
+           << "."
+           << id3v2tag->header()->revisionNumber()
+           << ", "
+           << id3v2tag->header()->tagSize()
+           << " bytes in tag"
+           << endl;
 
-      cout << endl << "ID3v1" << endl;
+      ID3v2::FrameList::ConstIterator it = id3v2tag->frameList().begin();
+      for(; it != id3v2tag->frameList().end(); it++)
+        cout << (*it)->frameID() << " - \"" << (*it)->toString() << "\"" << endl;
+    }
+    else
+      cout << "file does not have a valid id3v2 tag" << endl;
 
-      ID3v1::Tag *id3v1tag = f->ID3v1Tag();
+    cout << endl << "ID3v1" << endl;
 
-      if(id3v1tag) {
-        cout << "title   - \"" << id3v1tag->title()   << "\"" << endl;
-        cout << "artist  - \"" << id3v1tag->artist()  << "\"" << endl;
-        cout << "album   - \"" << id3v1tag->album()   << "\"" << endl;
-        cout << "year    - \"" << id3v1tag->year()    << "\"" << endl;
-        cout << "comment - \"" << id3v1tag->comment() << "\"" << endl;
-        cout << "track   - \"" << id3v1tag->track()   << "\"" << endl;
-        cout << "genre   - \"" << id3v1tag->genre()   << "\"" << endl;
-      }
-      else
-        cout << "file does not have a valid id3v1 tag" << endl;
+    ID3v1::Tag *id3v1tag = f.ID3v1Tag();
 
+    if(id3v1tag) {
+      cout << "title   - \"" << id3v1tag->title()   << "\"" << endl;
+      cout << "artist  - \"" << id3v1tag->artist()  << "\"" << endl;
+      cout << "album   - \"" << id3v1tag->album()   << "\"" << endl;
+      cout << "year    - \"" << id3v1tag->year()    << "\"" << endl;
+      cout << "comment - \"" << id3v1tag->comment() << "\"" << endl;
+      cout << "track   - \"" << id3v1tag->track()   << "\"" << endl;
+      cout << "genre   - \"" << id3v1tag->genre()   << "\"" << endl;
     }
-    else if(dynamic_cast<Ogg::Vorbis::File *>(file.file())) {
-      Ogg::Vorbis::File *f = static_cast<Ogg::Vorbis::File *>(file.file());
-      Ogg::XiphComment *tag = f->tag();
-
-      const Ogg::FieldListMap fields = tag->fieldListMap();
-      for(Ogg::FieldListMap::ConstIterator it = fields.begin(); it != fields.end(); ++it) {
-        cout << (*it).first << " -";
-        StringList values = (*it).second;
-        for(StringList::ConstIterator valueIt = values.begin(); valueIt != values.end(); ++valueIt)
-          cout << " \"" << *valueIt << '"';
-        cout << endl;
-      }
-    }
-    
+    else
+      cout << "file does not have a valid id3v1 tag" << endl;
+
     cout << endl;
   }
 }