TagLib  1.13.1
mp4file.h
Go to the documentation of this file.
1 /**************************************************************************
2  copyright : (C) 2007 by Lukáš Lalinský
3  email : lalinsky@gmail.com
4  **************************************************************************/
5 
6 /***************************************************************************
7  * This library is free software; you can redistribute it and/or modify *
8  * it under the terms of the GNU Lesser General Public License version *
9  * 2.1 as published by the Free Software Foundation. *
10  * *
11  * This library is distributed in the hope that it will be useful, but *
12  * WITHOUT ANY WARRANTY; without even the implied warranty of *
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
14  * Lesser General Public License for more details. *
15  * *
16  * You should have received a copy of the GNU Lesser General Public *
17  * License along with this library; if not, write to the Free Software *
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA *
19  * 02110-1301 USA *
20  * *
21  * Alternatively, this file is available under the Mozilla Public *
22  * License Version 1.1. You may obtain a copy of the License at *
23  * http://www.mozilla.org/MPL/ *
24  ***************************************************************************/
25 
26 #ifndef TAGLIB_MP4FILE_H
27 #define TAGLIB_MP4FILE_H
28 
29 #include "tag.h"
30 #include "tfile.h"
31 #include "taglib_export.h"
32 #include "mp4properties.h"
33 #include "mp4tag.h"
34 
35 namespace TagLib {
37  namespace MP4 {
38  class Atoms;
39 
47  {
48  public:
53  enum TagTypes {
55  NoTags = 0x0000,
57  MP4 = 0x0001,
59  AllTags = 0xffff
60  };
61 
68  File(FileName file, bool readProperties = true,
69  Properties::ReadStyle audioPropertiesStyle = Properties::Average);
70 
80  File(IOStream *stream, bool readProperties = true,
81  Properties::ReadStyle audioPropertiesStyle = Properties::Average);
82 
86  virtual ~File();
87 
98  Tag *tag() const;
99 
104 
109  void removeUnsupportedProperties(const StringList &properties);
110 
115 
120 
126  bool save();
127 
135  bool strip(int tags = AllTags);
136 
141  bool hasMP4Tag() const;
142 
150  static bool isSupported(IOStream *stream);
151 
152  private:
153  void read(bool readProperties);
154 
155  class FilePrivate;
156  FilePrivate *d;
157  };
158  } // namespace MP4
159 } // namespace TagLib
160 #endif
ReadStyle
Definition: audioproperties.h:53
@ Average
Read more of the file and make better values guesses.
Definition: audioproperties.h:57
A file class with some useful methods for tag manipulation.
Definition: tfile.h:51
An abstract class that provides operations on a sequence of bytes.
Definition: tiostream.h:63
Definition: mp4file.h:47
File(FileName file, bool readProperties=true, Properties::ReadStyle audioPropertiesStyle=Properties::Average)
Tag * tag() const
Properties * audioProperties() const
static bool isSupported(IOStream *stream)
void removeUnsupportedProperties(const StringList &properties)
TagTypes
Definition: mp4file.h:53
PropertyMap properties() const
bool strip(int tags=AllTags)
PropertyMap setProperties(const PropertyMap &)
File(IOStream *stream, bool readProperties=true, Properties::ReadStyle audioPropertiesStyle=Properties::Average)
bool hasMP4Tag() const
An implementation of MP4 audio properties.
Definition: mp4properties.h:39
Definition: mp4tag.h:47
A map for format-independent <key,valuelist> tag representations.
Definition: tpropertymap.h:119
A list of strings.
Definition: tstringlist.h:46
A namespace for all TagLib related classes and functions.
Definition: apefile.h:41
const char * FileName
Definition: tiostream.h:57
#define TAGLIB_EXPORT
Definition: taglib_export.h:40