taglib-wasm
Version:
TagLib-Wasm is the universal tagging library for TypeScript/JavaScript platforms: Browsers, Node.js, Deno, Bun, Cloudflare Workers, and Electron apps
51 lines (39 loc) • 2.25 kB
Plain Text
MIT License
Copyright (c) 2025 Charles Wiltgen
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
---
ADDITIONAL LICENSING INFORMATION:
This product includes software developed by Scott Wheeler and the TagLib
contributors (https://taglib.org/).
The WebAssembly binaries (build/taglib-web.wasm for the Emscripten backend
and build/taglib-wasi.wasm for the WASI backend, shipped as dist/*.wasm)
contain compiled TagLib code which is licensed under LGPL-2.1-or-later.
The original TagLib source code is located in lib/taglib/. See
lib/taglib/COPYING.LGPL for the full LGPL license terms.
LGPL COMPLIANCE:
The WebAssembly binaries are subject to LGPL requirements. This means:
- You may use them in commercial applications
- Modifications to TagLib must be shared under LGPL
- You must enable users to relink with modified TagLib versions
To rebuild the WebAssembly binaries with a modified TagLib:
1. Modify the TagLib source in lib/taglib/
2. Run: npm run build:wasm (builds both backends; requires the
Emscripten SDK and WASI SDK 33 — see CONTRIBUTING.md)
3. The new binaries will be in build/taglib-web.wasm and
build/taglib-wasi.wasm
For more information about LGPL compliance and dual licensing, see:
https://github.com/CharlesWiltgen/TagLib-Wasm#licensing