# @svta/cml-dash

> DASH manifest parsing functionality

Latest version **1.0.8** (published 2026-07-28) · Apache-2.0 license · 0 weekly downloads

## Install

```sh
npm install @svta/cml-dash
pnpm add @svta/cml-dash
yarn add @svta/cml-dash
bun add @svta/cml-dash
```

## Health

**Score 55/100 (C)** — status: active.

Positive: no vulnerabilities; recently updated; high maintenance score.

Warnings: low downloads; no types; no esm support.

## Facts

| | |
|---|---|
| Version | 1.0.8 |
| Published | 2026-07-28 |
| First published | 2025-10-08 |
| Weekly downloads | 0 |
| License | Apache-2.0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 84 |
| Maintainers | littlespex, jason_n_thibeault |
| Keywords | Common Media Library, CML, DASH, MPEG-DASH |

## Links

- npm: https://www.npmjs.com/package/@svta/cml-dash
- Repository: https://github.com/streaming-video-technology-alliance/common-media-library
- Homepage: https://github.com/streaming-video-technology-alliance/common-media-library/tree/main/libs/dash
- Issues: https://github.com/streaming-video-technology-alliance/common-media-library/issues
- npm.io page: https://npm.io/package/@svta/cml-dash

## Alternatives

- [lodash.assign](https://npm.io/package/lodash.assign.md) — 2.3M weekly downloads
- [lodash.chunk](https://npm.io/package/lodash.chunk.md) — 1.8M weekly downloads
- [react-native-ios-utilities](https://npm.io/package/react-native-ios-utilities.md) — 138.5K weekly downloads
- [@technically/lodash](https://npm.io/package/@technically/lodash.md) — 50.9K weekly downloads
- [@fluid-topics/ft-icon](https://npm.io/package/@fluid-topics/ft-icon.md) — 20.6K weekly downloads

## Recent versions

- 1.0.8 (latest) — 2026-07-28
- 1.0.7 — 2026-07-21
- 1.0.6 — 2026-05-13
- 1.0.5 — 2026-02-12
- 1.0.4 — 2026-02-05
- 1.0.3 — 2026-02-03
- 1.0.2 — 2025-12-26
- 1.0.1 — 2025-12-22
- 1.0.0 — 2025-10-24
- 0.22.0 — 2025-10-23
- 0.21.0 — 2025-10-21
- 0.20.0 — 2025-10-14
- 0.19.0 — 2025-10-08

## README

# @svta/cml-dash

DASH manifest parsing functionality.

## Installation

```bash
npm i @svta/cml-dash
```

## Usage

```typescript
import { processUriTemplate, parseFrameRate } from "@svta/cml-dash";

// Process URI template
const result = processUriTemplate(
	"http://example.com/$RepresentationID$/$Number$/$SubNumber$/$Bandwidth$/$Time%02d$/$$",
	"rep1", // RepresentationID
	1, // Number
	2, // SubNumber
	3, // Bandwidth
	4 // Time
);

assert(result === "http://example.com/rep1/1/2/3/04/$");

// Parse frame rate
const frameRate = parseFrameRate("24000/1001");
assert(frameRate === 23.976023976023978);
```

---
_Source: https://npm.io/package/@svta/cml-dash · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
