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 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
|
// 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.
#if defined HAVE_CONFIG_H
#include <config.h>
#endif
#include <iostream>
#include <cstring>
#include <id3/tag.h>
#include <getopt.h>
#include <cstdlib>
#include <cstdio>
#include <id3/misc_support.h>
#include "frametable.h"
#include "genre.h"
#include "charset.h"
const char *GetDescription(const ID3_FrameID eFrameID)
{
for(int ii = 0; ii < frameTableCount; ii++ )
{
if (frameTable[ii].frameID == eFrameID)
return frameTable[ii].frameLongName;
}
return NULL;
}
void PrintFrameHelp(char *sName)
{
for(int ii = 0; ii < frameTableCount - 1; ii++ )
{
std::cout << " --" << frameTable[ii].frameName << " "
<< frameTable[ii].frameLongName << std::endl;
}
return;
}
void PrintGenreList()
{
for (int ii = 0; ii < GetGenreCount(); ii++)
printf("%3d: %s\n", ii, GetGenreFromNum(ii));
}
int PrintInformation(char *sFileName, const ID3_Tag &myTag, int rfc822)
{
bool firstLine = true;
const ID3_Frame * myFrame;
ID3_Tag::ConstIterator *Iter=myTag.CreateIterator();
for (size_t nFrames = 0; nFrames < myTag.NumFrames(); nFrames++)
{
myFrame = Iter->GetNext();
if(firstLine) {
if (rfc822)
std::cout << "\nFilename: " << sFileName << std::endl;
else
std::cout << "id3v2 tag info for " << sFileName << ":" << std::endl;
firstLine = false;
}
if (NULL != myFrame)
{
const char* desc = myFrame->GetDescription();
if (!desc) desc = "";
if (rfc822)
std::cout << myFrame->GetTextID() << ": ";
else
std::cout << myFrame->GetTextID() << " (" << desc << "): ";
ID3_FrameID eFrameID = myFrame->GetID();
switch (eFrameID)
{
case ID3FID_ALBUM:
case ID3FID_BPM:
case ID3FID_COMPOSER:
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 = GetID3EncText(myFrame, ID3FN_TEXT);
std::cout << sText << std::endl;
delete [] sText;
break;
}
case ID3FID_CONTENTTYPE:
{
const char* genre_str;
int genre_id = 255;
char *sText = GetID3EncText(myFrame, ID3FN_TEXT);
sscanf(sText, "(%d)", &genre_id);
if (genre_id == 255) {
genre_str = sText;
genre_id = GetNumFromGenre(sText);
}
else
genre_str = GetGenreFromNum(genre_id);
std::cout << genre_str << " (" << genre_id << ")" << std::endl;
delete [] sText;
break;
}
case ID3FID_USERTEXT:
{
char
*sText = GetID3EncText(myFrame, ID3FN_TEXT),
*sDesc = GetID3EncText(myFrame, ID3FN_DESCRIPTION);
std::cout << "(" << sDesc << "): " << sText << std::endl;
delete [] sText;
delete [] sDesc;
break;
}
case ID3FID_TERMSOFUSE:
{
char
*sText = GetID3EncText(myFrame, ID3FN_TEXT),
*sLang = GetID3EncText(myFrame, ID3FN_LANGUAGE);
std::cout << "[" << sLang << "]: "
<< sText << std::endl;
delete [] sText;
delete [] sLang;
break;
}
case ID3FID_COMMENT:
case ID3FID_UNSYNCEDLYRICS:
{
char
*sText = GetID3EncText(myFrame, ID3FN_TEXT),
*sDesc = GetID3EncText(myFrame, ID3FN_DESCRIPTION),
*sLang = GetID3EncText(myFrame, ID3FN_LANGUAGE);
std::cout << "(" << sDesc << ")[" << sLang << "]: "
<< sText << std::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(myFrame, ID3FN_URL);
std::cout << sURL << std::endl;
delete [] sURL;
break;
}
case ID3FID_WWWUSER:
{
char
*sURL = ID3_GetString(myFrame, ID3FN_URL),
*sDesc = GetID3EncText(myFrame, ID3FN_DESCRIPTION);
std::cout << "(" << sDesc << "): " << sURL << std::endl;
delete [] sURL;
delete [] sDesc;
break;
}
case ID3FID_INVOLVEDPEOPLE:
{
// This isn't the right way to do it---will only get first person
size_t nItems = myFrame->Field(ID3FN_TEXT).GetNumTextItems();
for (size_t nIndex = 1; nIndex <= nItems; nIndex++)
{
char *sPeople = GetID3EncText(myFrame, ID3FN_TEXT, nIndex);
std::cout << sPeople;
delete [] sPeople;
if (nIndex < nItems)
{
std::cout << ", ";
}
}
std::cout << std::endl;
break;
}
case ID3FID_PICTURE:
{
char
*sMimeType = ID3_GetString(myFrame, ID3FN_MIMETYPE),
*sDesc = GetID3EncText(myFrame, ID3FN_DESCRIPTION),
*sFormat = ID3_GetString(myFrame, ID3FN_IMAGEFORMAT);
size_t
nPicType = myFrame->Field(ID3FN_PICTURETYPE).Get(),
nDataSize = myFrame->Field(ID3FN_DATA).Size();
std::cout << "(" << sDesc << ")[" << sFormat << ", "
<< nPicType << "]: " << sMimeType << ", " << nDataSize
<< " bytes" << std::endl;
delete [] sMimeType;
delete [] sDesc;
delete [] sFormat;
break;
}
case ID3FID_GENERALOBJECT:
{
char
*sMimeType = ID3_GetString(myFrame, ID3FN_MIMETYPE),
*sDesc = GetID3EncText(myFrame, ID3FN_DESCRIPTION),
*sFileName = GetID3EncText(myFrame, ID3FN_FILENAME);
size_t nDataSize = myFrame->GetField(ID3FN_DATA)->Size();
std::cout << "(" << sDesc << ")["
<< sFileName << "]: " << sMimeType << ", " << nDataSize
<< " bytes" << std::endl;
delete [] sMimeType;
delete [] sDesc;
delete [] sFileName;
break;
}
case ID3FID_UNIQUEFILEID:
{
char *sOwner = ID3_GetString(myFrame, ID3FN_OWNER);
size_t nDataSize = myFrame->Field(ID3FN_DATA).Size();
std::cout << sOwner << ", " << nDataSize
<< " bytes" << std::endl;
delete [] sOwner;
break;
}
case ID3FID_PLAYCOUNTER:
{
size_t nCounter = myFrame->Field(ID3FN_COUNTER).Get();
std::cout << nCounter << std::endl;
break;
}
case ID3FID_POPULARIMETER:
{
char *sEmail = ID3_GetString(myFrame, ID3FN_EMAIL);
size_t
nCounter = myFrame->Field(ID3FN_COUNTER).Get(),
nRating = myFrame->Field(ID3FN_RATING).Get();
std::cout << sEmail << ", counter="
<< nCounter << " rating=" << nRating;
delete [] sEmail;
break;
}
case ID3FID_CRYPTOREG:
case ID3FID_GROUPINGREG:
{
char *sOwner = ID3_GetString(myFrame, ID3FN_OWNER);
size_t
nSymbol = myFrame->Field(ID3FN_ID).Get(),
nDataSize = myFrame->Field(ID3FN_DATA).Size();
std::cout << "(" << nSymbol << "): " << sOwner
<< ", " << nDataSize << " bytes";
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_SYNCEDLYRICS:
case ID3FID_SYNCEDTEMPO:
case ID3FID_METACRYPTO:
{
std::cout << " (unimplemented)" << std::endl;
break;
}
default:
{
std::cout << " frame" << std::endl;
break;
}
}
}
}
delete Iter;
if(firstLine)
return 1;
return 0;
}
int PrintID3v1Tag(char *sFileName)
// code from id3
{
struct id3 {
char tag[3];
char title[30];
char artist[30];
char album[30];
char year[4];
/* With ID3 v1.0, the comment is 30 chars long */
/* With ID3 v1.1, if comment[28] == 0 then comment[29] == tracknum */
char comment[30];
unsigned char genre;
} id3v1tag;
FILE *fp;
fp = fopen(sFileName, "r"); /* read only */
if (fp == NULL) { /* file didn't open */
fprintf(stderr, "fopen: %s: ", sFileName);
perror("id3v2");
return -1;
}
if (fseek(fp, -128, SEEK_END) < 0) {
/* problem rewinding */
} else { /* we rewound successfully */
if (fread(&id3v1tag, 128, 1, fp) != 1) {
/* read error */
fprintf(stderr, "fread: %s: ", sFileName);
perror("");
}
}
fclose(fp);
/* This simple detection code has a 1 in 16777216
* chance of misrecognizing or deleting the last 128
* bytes of your mp3 if it isn't tagged. ID3 ain't
* world peace, live with it.
*/
if (!strncmp(id3v1tag.tag, "TAG", 3))
{
std::cout << "id3v1 tag info for " << sFileName << ":" << std::endl;
printf("Title : %-30.30s Artist: %-30.30s\n",
id3v1tag.title, id3v1tag.artist);
printf("Album : %-30.30s Year: %-4.4s, Genre: %s (%d)\n",
id3v1tag.album, id3v1tag.year,
(id3v1tag.genre < GetGenreCount())
? GetGenreFromNum(id3v1tag.genre) :
"Unknown", id3v1tag.genre);
if (!id3v1tag.comment[28])
printf("Comment: %-28.28s Track: %d\n",
id3v1tag.comment, id3v1tag.comment[29]);
else
printf("Comment: %-30.30s\n", id3v1tag.comment);
}
else
{
return 1;
}
return 0;
}
void ListTag(int argc, char *argv[], int optind, int rfc822)
{
int ret = 0;
for (int nIndex = optind; nIndex < argc; nIndex++)
{
bool id3v1_tag = false;
bool id3v2_tag = false;
ID3_Tag myTag;
if (!rfc822)
{
ret = PrintID3v1Tag(argv[nIndex]);
if (ret == -1)
{
continue;
}
else if(ret == 0)
{
id3v1_tag = true;
}
}
myTag.Link(argv[nIndex], ID3TT_ID3V2);
if(!PrintInformation(argv[nIndex],myTag,rfc822))
id3v2_tag = true;
if(!id3v1_tag && !id3v2_tag)
std::cout << argv[nIndex] << ": No ID3 tag" << std::endl;
else {
if (!id3v1_tag)
std::cout << argv[nIndex] << ": No ID3v1 tag" << std::endl;
if (!id3v2_tag)
std::cout << argv[nIndex] << ": No ID3v2 tag" << std::endl;
}
id3v1_tag = false;
id3v2_tag = false;
}
return;
}
|