taglib-wasm
Version:
TagLib-Wasm is the universal tagging library for TypeScript/JavaScript platforms: Browsers, Node.js, Deno, Bun, Cloudflare Workers, and Electron apps
22 lines • 556 B
TypeScript
/**
* Simple API for reading and writing audio metadata with minimal code.
*
* @module simple
*
* @example
* ```typescript
* import { readTags, applyTags } from "@charlesw/taglib-wasm/simple";
*
* // Read tags from a file
* const tags = await readTags(audioBuffer);
* console.log(tags.title, tags.artist);
*
* // Apply tags and get modified buffer
* const modified = await applyTags(audioBuffer, {
* title: "New Title",
* artist: "New Artist"
* });
* ```
*/
export * from "./src/simple/index.js";
//# sourceMappingURL=simple.d.ts.map