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
|
// $Id: demo_convert.cpp,v 1.15 2002/06/27 12:46:55 t1mpy Exp $
//
// The authors have released ID3Lib as Public Domain (PD) and claim no
// copyright, patent or other intellectual property protection in this work.
// This means that it may be modified, redistributed and used in commercial
// and non-commercial software and hardware without restrictions. ID3Lib is
// distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either
// express or implied.
//
// The ID3Lib authors encourage improvements and optimisations to be sent to
// the ID3Lib coordinator, currently Dirk Mahoney (dirk@id3.org). Approved
// submissions may be altered, and will be included and released under these
// terms.
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <string.h>
#include "id3/id3lib_streams.h"
#include "id3/tag.h"
#include "demo_convert_options.h"
using std::cout;
using std::endl;
static const char* VERSION_NUMBER = "$Revision: 1.15 $";
void PrintUsage(const char *sName)
{
cout << "Converts between id3v1 and id3v2 tags of an mp3 file." << endl;
cout << endl;
cout << "Will render both types of tag by default. Only the last" << endl
<< "tag type indicated in the option list will be used. Non-" << endl
<< "rendered will remain unchanged in the original file. Will" << endl
<< "also parse and convert Lyrics3 v2.0 frames, but will not" << endl
<< "render them." << endl;
}
void PrintVersion(const char *sName)
{
size_t nIndex;
cout << sName << " ";
for (nIndex = 0; nIndex < strlen(VERSION_NUMBER); nIndex++)
{
if (VERSION_NUMBER[nIndex] == ' ')
{
break;
}
}
nIndex++;
for (; nIndex < strlen (VERSION_NUMBER); nIndex++)
{
if (VERSION_NUMBER[nIndex] == ' ')
{
break;
}
cout << VERSION_NUMBER[nIndex];
}
cout << endl;
cout << "Uses " << ID3LIB_FULL_NAME << endl << endl;
cout << "This program converts and strips ID3v1/1.1 and Lyrics3 v2.0" << endl;
cout << "tags to ID3v2 tags." << endl << endl;
}
void DisplayTags(ostream &os, luint nTags)
{
if (!((nTags & ID3TT_ID3V1) || (nTags & ID3TT_ID3V2)))
{
os << "no tag";
}
if (nTags & ID3TT_ID3V1)
{
os << "v1";
}
if ((nTags & ID3TT_ID3V1) && (nTags & ID3TT_ID3V2))
{
os << " and ";
}
if (nTags & ID3TT_ID3V2)
{
os << "v2";
}
}
int main(int argc, char * const argv[])
{
flags_t ulFlag = ID3TT_ALL;
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
if (args.v1tag_flag)
{
ulFlag = ID3TT_ID3V1;
}
if (args.v2tag_flag)
{
ulFlag = ID3TT_ID3V2;
}
const char* filename = NULL;
for (size_t i = 0; i < args.inputs_num; ++i)
{
filename = args.inputs[i];
ID3_Tag myTag;
if (args.strip_given)
{
cout << "Stripping ";
}
else
{
cout << "Converting ";
}
cout << filename << ": ";
myTag.Clear();
myTag.Link(filename, ID3TT_ALL);
myTag.SetPadding(args.padding_flag);
cout << "attempting ";
DisplayTags(cout, ulFlag);
luint nTags;
if (args.strip_flag)
{
nTags = myTag.Strip(ulFlag);
cout << ", stripped ";
}
else
{
nTags = myTag.Update(ulFlag);
cout << ", converted ";
}
DisplayTags(cout, nTags);
cout << endl;
}
return 0;
}
|