1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401
|
// Copyright 1999 Scott Thomas Haug <scott@id3.org>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
// $Id: demo_info.cpp,v 1.32 2002/07/28 21:53:56 t1mpy Exp $
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <id3/tag.h>
#include <id3/utils.h>
#include <id3/misc_support.h>
#include <id3/readers.h>
#include <id3/io_helpers.h>
#include "demo_info_options.h"
using namespace dami;
using std::cout;
using std::endl;
static String VERSION_NUMBER = "$Revision: 1.32 $";
void PrintUsage(const char *sName)
{
cout << "Usage: " << sName << " [OPTION]... [FILE]..." << endl;
cout << "Display the id3 (both v1 and v2) tag information for a file." << endl;
cout << endl;
cout << " -h, --help Display this help and exit" << endl;
cout << " -v, --version Display version information and exit" << endl;
cout << endl;
cout << "Will not differentiate between the two types of tags" << endl;
}
void PrintVersion(const char *sName)
{
cout << sName << " " << VERSION_NUMBER.c_str() << endl;
cout << "Displays ID3 Tag Information - Written by Scott Thomas Haug" << endl;
cout << "Uses " << ID3LIB_FULL_NAME << endl << endl;
}
void PrintInformation(const ID3_Tag &myTag)
{
ID3_Tag::ConstIterator* iter = myTag.CreateIterator();
const ID3_Frame* frame = NULL;
while (NULL != (frame = iter->GetNext()))
{
const char* desc = frame->GetDescription();
if (!desc) desc = "";
cout << "=== " << frame->GetTextID() << " (" << desc << "): ";
ID3_FrameID eFrameID = frame->GetID();
switch (eFrameID)
{
case ID3FID_ALBUM:
case ID3FID_BPM:
case ID3FID_COMPOSER:
case ID3FID_CONTENTTYPE:
case ID3FID_COPYRIGHT:
case ID3FID_DATE:
case ID3FID_PLAYLISTDELAY:
case ID3FID_ENCODEDBY:
case ID3FID_LYRICIST:
case ID3FID_FILETYPE:
case ID3FID_TIME:
case ID3FID_CONTENTGROUP:
case ID3FID_TITLE:
case ID3FID_SUBTITLE:
case ID3FID_INITIALKEY:
case ID3FID_LANGUAGE:
case ID3FID_SONGLEN:
case ID3FID_MEDIATYPE:
case ID3FID_ORIGALBUM:
case ID3FID_ORIGFILENAME:
case ID3FID_ORIGLYRICIST:
case ID3FID_ORIGARTIST:
case ID3FID_ORIGYEAR:
case ID3FID_FILEOWNER:
case ID3FID_LEADARTIST:
case ID3FID_BAND:
case ID3FID_CONDUCTOR:
case ID3FID_MIXARTIST:
case ID3FID_PARTINSET:
case ID3FID_PUBLISHER:
case ID3FID_TRACKNUM:
case ID3FID_RECORDINGDATES:
case ID3FID_NETRADIOSTATION:
case ID3FID_NETRADIOOWNER:
case ID3FID_SIZE:
case ID3FID_ISRC:
case ID3FID_ENCODERSETTINGS:
case ID3FID_YEAR:
{
char *sText = ID3_GetString(frame, ID3FN_TEXT);
cout << sText << endl;
delete [] sText;
break;
}
case ID3FID_USERTEXT:
{
char
*sText = ID3_GetString(frame, ID3FN_TEXT),
*sDesc = ID3_GetString(frame, ID3FN_DESCRIPTION);
cout << "(" << sDesc << "): " << sText << endl;
delete [] sText;
delete [] sDesc;
break;
}
case ID3FID_COMMENT:
case ID3FID_UNSYNCEDLYRICS:
{
char
*sText = ID3_GetString(frame, ID3FN_TEXT),
*sDesc = ID3_GetString(frame, ID3FN_DESCRIPTION),
*sLang = ID3_GetString(frame, ID3FN_LANGUAGE);
cout << "(" << sDesc << ")[" << sLang << "]: "
<< sText << endl;
delete [] sText;
delete [] sDesc;
delete [] sLang;
break;
}
case ID3FID_WWWAUDIOFILE:
case ID3FID_WWWARTIST:
case ID3FID_WWWAUDIOSOURCE:
case ID3FID_WWWCOMMERCIALINFO:
case ID3FID_WWWCOPYRIGHT:
case ID3FID_WWWPUBLISHER:
case ID3FID_WWWPAYMENT:
case ID3FID_WWWRADIOPAGE:
{
char *sURL = ID3_GetString(frame, ID3FN_URL);
cout << sURL << endl;
delete [] sURL;
break;
}
case ID3FID_WWWUSER:
{
char
*sURL = ID3_GetString(frame, ID3FN_URL),
*sDesc = ID3_GetString(frame, ID3FN_DESCRIPTION);
cout << "(" << sDesc << "): " << sURL << endl;
delete [] sURL;
delete [] sDesc;
break;
}
case ID3FID_INVOLVEDPEOPLE:
{
size_t nItems = frame->GetField(ID3FN_TEXT)->GetNumTextItems();
for (size_t nIndex = 0; nIndex < nItems; nIndex++)
{
char *sPeople = ID3_GetString(frame, ID3FN_TEXT, nIndex);
cout << sPeople;
delete [] sPeople;
if (nIndex + 1 < nItems)
{
cout << ", ";
}
}
cout << endl;
break;
}
case ID3FID_PICTURE:
{
char
*sMimeType = ID3_GetString(frame, ID3FN_MIMETYPE),
*sDesc = ID3_GetString(frame, ID3FN_DESCRIPTION),
*sFormat = ID3_GetString(frame, ID3FN_IMAGEFORMAT);
size_t
nPicType = frame->GetField(ID3FN_PICTURETYPE)->Get(),
nDataSize = frame->GetField(ID3FN_DATA)->Size();
cout << "(" << sDesc << ")[" << sFormat << ", "
<< nPicType << "]: " << sMimeType << ", " << nDataSize
<< " bytes" << endl;
delete [] sMimeType;
delete [] sDesc;
delete [] sFormat;
break;
}
case ID3FID_GENERALOBJECT:
{
char
*sMimeType = ID3_GetString(frame, ID3FN_MIMETYPE),
*sDesc = ID3_GetString(frame, ID3FN_DESCRIPTION),
*sFileName = ID3_GetString(frame, ID3FN_FILENAME);
size_t
nDataSize = frame->GetField(ID3FN_DATA)->Size();
cout << "(" << sDesc << ")["
<< sFileName << "]: " << sMimeType << ", " << nDataSize
<< " bytes" << endl;
delete [] sMimeType;
delete [] sDesc;
delete [] sFileName;
break;
}
case ID3FID_UNIQUEFILEID:
{
char *sOwner = ID3_GetString(frame, ID3FN_OWNER);
size_t nDataSize = frame->GetField(ID3FN_DATA)->Size();
cout << sOwner << ", " << nDataSize
<< " bytes" << endl;
delete [] sOwner;
break;
}
case ID3FID_PLAYCOUNTER:
{
size_t nCounter = frame->GetField(ID3FN_COUNTER)->Get();
cout << nCounter << endl;
break;
}
case ID3FID_POPULARIMETER:
{
char *sEmail = ID3_GetString(frame, ID3FN_EMAIL);
size_t
nCounter = frame->GetField(ID3FN_COUNTER)->Get(),
nRating = frame->GetField(ID3FN_RATING)->Get();
cout << sEmail << ", counter="
<< nCounter << " rating=" << nRating << endl;
delete [] sEmail;
break;
}
case ID3FID_CRYPTOREG:
case ID3FID_GROUPINGREG:
{
char *sOwner = ID3_GetString(frame, ID3FN_OWNER);
size_t
nSymbol = frame->GetField(ID3FN_ID)->Get(),
nDataSize = frame->GetField(ID3FN_DATA)->Size();
cout << "(" << nSymbol << "): " << sOwner
<< ", " << nDataSize << " bytes" << endl;
break;
}
case ID3FID_SYNCEDLYRICS:
{
char
*sDesc = ID3_GetString(frame, ID3FN_DESCRIPTION),
*sLang = ID3_GetString(frame, ID3FN_LANGUAGE);
size_t
nTimestamp = frame->GetField(ID3FN_TIMESTAMPFORMAT)->Get(),
nRating = frame->GetField(ID3FN_CONTENTTYPE)->Get();
const char* format = (2 == nTimestamp) ? "ms" : "frames";
cout << "(" << sDesc << ")[" << sLang << "]: ";
switch (nRating)
{
case ID3CT_OTHER: cout << "Other"; break;
case ID3CT_LYRICS: cout << "Lyrics"; break;
case ID3CT_TEXTTRANSCRIPTION: cout << "Text transcription"; break;
case ID3CT_MOVEMENT: cout << "Movement/part name"; break;
case ID3CT_EVENTS: cout << "Events"; break;
case ID3CT_CHORD: cout << "Chord"; break;
case ID3CT_TRIVIA: cout << "Trivia/'pop up' information"; break;
}
cout << endl;
ID3_Field* fld = frame->GetField(ID3FN_DATA);
if (fld)
{
ID3_MemoryReader mr(fld->GetRawBinary(), fld->BinSize());
while (!mr.atEnd())
{
cout << io::readString(mr).c_str();
cout << " [" << io::readBENumber(mr, sizeof(uint32)) << " "
<< format << "] ";
}
}
cout << endl;
delete [] sDesc;
delete [] sLang;
break;
}
case ID3FID_AUDIOCRYPTO:
case ID3FID_EQUALIZATION:
case ID3FID_EVENTTIMING:
case ID3FID_CDID:
case ID3FID_MPEGLOOKUP:
case ID3FID_OWNERSHIP:
case ID3FID_PRIVATE:
case ID3FID_POSITIONSYNC:
case ID3FID_BUFFERSIZE:
case ID3FID_VOLUMEADJ:
case ID3FID_REVERB:
case ID3FID_SYNCEDTEMPO:
case ID3FID_METACRYPTO:
{
cout << " (unimplemented)" << endl;
break;
}
default:
{
cout << " frame" << endl;
break;
}
}
}
delete iter;
}
#define DEBUG
int main(int argc, char * const argv[])
{
ID3D_INIT_DOUT();
gengetopt_args_info args;
if (cmdline_parser(argc, argv, &args) != 0)
{
exit(1);
}
#if defined ID3_ENABLE_DEBUG
if (args.warning_flag)
{
ID3D_INIT_WARNING();
ID3D_WARNING ( "warnings turned on" );
}
if (args.notice_flag)
{
ID3D_INIT_NOTICE();
ID3D_NOTICE ( "notices turned on" );
}
#endif
const char* filename = NULL;
for (size_t i = 0; i < args.inputs_num; ++i)
{
filename = args.inputs[i];
ID3_Tag myTag;
myTag.Link(filename, ID3TT_ALL);
const Mp3_Headerinfo* mp3info;
mp3info = myTag.GetMp3HeaderInfo();
cout << endl << "*** Tag information for " << filename << endl;
if (!args.assign_given)
{
PrintInformation(myTag);
}
else
{
cout << "*** Testing assignment operator" << endl;
ID3_Tag tmpTag(myTag);
PrintInformation(tmpTag);
}
if (mp3info)
{
cout << "*** mp3 info\n";
switch (mp3info->version)
{
case MPEGVERSION_2_5:
cout << "MPEG2.5/";
break;
case MPEGVERSION_2:
cout << "MPEG2/";
break;
case MPEGVERSION_1:
cout << "MPEG1/";
break;
default:
break;
}
switch (mp3info->layer)
{
case MPEGLAYER_III:
cout << "layer III\n";
break;
case MPEGLAYER_II:
cout << "layer II\n";
break;
case MPEGLAYER_I:
cout << "layer I\n";
break;
default:
break;
}
cout << "Bitrate: " << mp3info->bitrate/1000 << "KBps\n";
cout << "Frequency: " << mp3info->frequency/1000 << "KHz\n";
}
}
return 0;
}
|