# mediaconversion

> Convert videos

Latest version **0.1.0** (published 2016-10-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install mediaconversion
pnpm add mediaconversion
yarn add mediaconversion
bun add mediaconversion
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2016-10-19 |
| First published | 2016-10-19 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Jelle De Loecker |
| Maintainers | skerit |
| Keywords | ffmpeg, video |

## Links

- npm: https://www.npmjs.com/package/mediaconversion
- Repository: https://github.com/skerit/mediaconversion
- Homepage: https://github.com/skerit/mediaconversion#readme
- Issues: https://github.com/skerit/mediaconversion/issues
- npm.io page: https://npm.io/package/mediaconversion

## Dependencies (2)

- [mkdirp](https://npm.io/package/mkdirp.md) ~0.5.1
- [protoblast](https://npm.io/package/protoblast.md) ~0.3.2

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 0.1.0 (latest) — 2016-10-19

## README

# mediaconversion

Convert videos using ffmpeg

# Grabbing raw v4l stream

```javascript
var options,
    output,
    conv;

options = {
    input_type : 'video4linux2',
    profile    : 'copy'
};

// Create the conversion instance
conv = new MediaConversion();

// Set the correct input path
conv.setInput('/dev/some/video/device');

// Create a passthrough output stream
output = conv.createStream();

// Start the "conversion"
conv.start(output, options);
```

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