This repository has been archived by the owner on Sep 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mp3file.h
72 lines (59 loc) · 1.86 KB
/
mp3file.h
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
/* id3ted: mp3file.h
* Copyright (c) 2011 Bert Muennich <be.muennich at googlemail.com>
*
* 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.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#ifndef MP3FILE_H
#define MP3FILE_H
#include <vector>
#include <taglib/mpegfile.h>
#include <taglib/id3v2frame.h>
#include "id3ted.h"
#include "frameinfo.h"
#include "genericinfo.h"
#include "lametag.h"
#include "pattern.h"
class MP3File {
public:
explicit MP3File(const char*, int, bool);
~MP3File();
bool isValid() const { return file.isValid(); }
bool isReadOnly() const { return file.readOnly(); }
const char* filename() const { return file.name(); }
bool hasLameTag() const;
bool hasID3v1Tag() const;
bool hasID3v2Tag() const;
void apply(GenericInfo*);
void apply(FrameInfo*);
void apply(const MatchInfo&);
void fill(MatchInfo&);
void removeFrames(const char*);
bool save();
bool strip(int);
void showInfo() const;
void printLameTag(bool) const;
void listID3v1Tag() const;
void listID3v2Tag(bool) const;
void extractAPICs(bool) const;
private:
MPEG::File file;
Tag *id3Tag;
ID3v1::Tag *id3v1Tag;
ID3v2::Tag *id3v2Tag;
LameTag *lameTag;
int tags;
vector<ID3v2::Frame*> find(FrameInfo*);
};
#endif /* MP3FILE_H */