# metalsmith-ffmetadata

> A small lib for metalmsith, to read metadata in media files using ffmpeg et node-ffmetadata.

Latest version **1.0.2** (published 2019-09-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install metalsmith-ffmetadata
pnpm add metalsmith-ffmetadata
yarn add metalsmith-ffmetadata
bun add metalsmith-ffmetadata
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2019-09-02 |
| First published | 2019-08-31 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Unpacked size | 2 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | S Daron |
| Maintainers | simeketje |

## Links

- npm: https://www.npmjs.com/package/metalsmith-ffmetadata
- Repository: https://github.com/SDaron/metalsmith-ffmetadata
- Homepage: https://github.com/SDaron/metalsmith-ffmetadata#readme
- Issues: https://github.com/SDaron/metalsmith-ffmetadata/issues
- npm.io page: https://npm.io/package/metalsmith-ffmetadata

## Dependencies (2)

- [minimatch](https://npm.io/package/minimatch.md) ^3.0.4
- [ffmetadata](https://npm.io/package/ffmetadata.md) ^1.5.0

## Recent versions

- 1.0.2 (latest) — 2019-09-02
- 1.0.1 — 2019-08-31
- 1.0.0 — 2019-08-31

## README

# metalsmith-ffmetadata

A small lib for metalmsith, to read metadata in media files using ffmpeg et node-ffmetadata.

## Usage

To install the module add it to your project's ``package.json`` dependencies or install manually running:
```
npm install metalsmith-ffmetadata
```

Then pull it in your code:
```javascript
const Metalsmith = require('metalsmith')
const ffmetadata = require('metalsmith-ffmetadata')
Metalsmith(__dirname)
  .use(
    ffmetadata({
      pattern: '**/*.+(mp3)',
      property: 'metadata'
    })
  )
  .build((err) => {
    if (err) return console.error(err)
    console.log('Build successfully finished! It is 🥙 time!')
  })
```
## License
[MIT License](http://en.wikipedia.org/wiki/MIT_License)

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