mirror of
https://github.com/taglib/taglib.git
synced 2025-05-27 21:20:26 -04:00
Some ID3v2.4.0 frames such as text information frames support multiple strings separated by the termination code of the character encoding. If the encoding is $01 UTF-16 with BOM, all strings shall have the same byte order. In the multi strings written by TagLib, all string elements of such a multi string have a BOM. However, I have often seen tags where a BOM exists only at the beginning, i.e. at the start of the first string. In such a case, TagLib will only return a list with the first string and a second empty string. This commit will detect such cases and parse the strings without BOM according to the BOM of the first string. |
||
---|---|---|
3rdparty/utf8-cpp | ||
bindings | ||
cmake/modules | ||
doc | ||
examples | ||
taglib | ||
tests | ||
.astylerc | ||
.editorconfig | ||
.gitignore | ||
.travis.yml | ||
AUTHORS | ||
cmake_uninstall.cmake.in | ||
CMakeLists.txt | ||
config.h.cmake | ||
ConfigureChecks.cmake | ||
COPYING.LGPL | ||
COPYING.MPL | ||
Doxyfile.cmake | ||
INSTALL.md | ||
NEWS | ||
README.md | ||
taglib-config.cmake | ||
taglib-config.cmd.cmake | ||
taglib.pc.cmake |
TagLib
TagLib Audio Metadata Library
TagLib is a library for reading and editing the metadata of several popular audio formats. Currently it supports both ID3v1 and ID3v2 for MP3 files, Ogg Vorbis comments and ID3 tags in FLAC, MPC, Speex, WavPack, TrueAudio, WAV, AIFF, MP4, APE, and ASF files.
TagLib is distributed under the GNU Lesser General Public License (LGPL) and Mozilla Public License (MPL). Essentially that means that it may be used in proprietary applications, but if changes are made to TagLib they must be contributed back to the project. Please review the licenses if you are considering using TagLib in your project.